码迷,mamicode.com
首页 > 其他好文 > 详细

Timer定时任务

时间:2016-11-01 18:42:04      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:except   timertask   block   ack   定时   string   lex   相似度   roi   

// main方法
public static void main(String[] args) {
timerEnter();
}

// 设定指定任务task在指定延迟delay后进行固定延迟peroid的执行
// schedule(TimerTask task启动任务, long delay第一次启动延迟, long period启动后每次延迟)
public static void timerEnter() {
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
// System.out.println("-------相似度任务--------");
try {
compareSame();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

}, TaskConstant.DelayFirst, TaskConstant.DelayPer);
}

Timer定时任务

标签:except   timertask   block   ack   定时   string   lex   相似度   roi   

原文地址:http://www.cnblogs.com/haorun/p/6020360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!