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();