62,621
社区成员
发帖
与我相关
我的任务
分享
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
public class Test {
public static void main(String args[]) {
Timer time = new Timer();
time.schedule(new TimerTask() {
public void run() {
printNowDate();
}
}, 0, 1000);
}
private static void printNowDate() {
Date date = new Date();
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:ss");
String nowTime = format.format(date);
System.out.println(nowTime);
}
}
