Timer定时任务
Posted 1582277142
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Timer定时任务相关的知识,希望对你有一定的参考价值。
// 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定时任务的主要内容,如果未能解决你的问题,请参考以下文章
Java定时任务:利用java Timer类实现定时执行任务的功能