黑马程序员技术交流社区

标题: 怎么没有进入actionPerformed 方法中??? [打印本页]

作者: 回首、后_街    时间: 2013-4-24 22:45
标题: 怎么没有进入actionPerformed 方法中???
本帖最后由 回首、后_街 于 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






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2