首页 > 代码库 > 定时运行程序
定时运行程序
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);//启动定时扫描
定时运行程序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。