java 间隔5秒执行一个方法

public static void main(String[] args) {

        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        for (int i = 0; i < 3; i++) {
            try {
                Thread.sleep(5 * 1000); //设置暂停的时间 5 秒
                System.out.println(sdf.format(new Date()) + "--循环执行第" + (i+1) + "次");
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }

    }

java 间隔5秒执行一个方法_第1张图片

你可能感兴趣的:(java)