本帖最后由 回首、后_街 于 2013-4-25 09:49 编辑
import javax.swing.Timer;
import java.sql.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
ActionListener time = new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
//date对象代表当前的系统时间(毫秒)
Date date = new Date(0);
SimpleDateFormat from = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss"); //时间的格式
//format()方法是用来格式化时间的方法
String times = from.format(date);
System.out.println(times);
}
};
Timer tim = new Timer(1000,time);
tim.start();
运行该代码 没有进入actionPerformed 方法中找了挺久的不知道哪里出了问题运行出来结果
1970-01-01 08:00:00
1970-01-01 08:00:00
1970-01-01 08:00:00
1970-01-01 08:00:00
1970-01-01 08:00:00
1970-01-01 08:00:00
1970-01-01 08:00:00
|
|