定时运行程序

Posted ermei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了定时运行程序相关的知识,希望对你有一定的参考价值。

 Runnable runnable = new Runnable() {
public void run() {
task to run goes here
try {
body();//需要运行的函数名
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
//e.printStackTrace();
}
}
};//设定一个线程
ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
// System.out.println("kaishi检测。。。。");
// 第二个参数为首次执行的延时时间,第三个参数为定时执行的间隔时间
service.scheduleAtFixedRate(runnable, 0, 7, TimeUnit.DAYS);//启动定时扫描

以上是关于定时运行程序的主要内容,如果未能解决你的问题,请参考以下文章

定时运行程序

.net C# winform程序定时运行代码

crontab linux定时运行程序

如何在Windows系统中设置Python程序定时运行

定时器中断在 atmel 仿真中不运行它的服务程序

如何在Windows系统中设置Python程序定时运行