1.java项目中使用定时器来完成定时任务
public void getEmpById() throws IOException {
// 创建 Timer 对象
Timer timer = new Timer(true);
// 调用定时方法
timer.schedule(new java.util.TimerTask() {public void run(){
try {
// 调用需要定时执行的方法
checkNewMail();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// 参数0,代表延迟执行的时间
// 参数 2 * 60 * 1000 代表每2分钟执行一次
}, 0, 2 * 60 * 1000);
}