java使用线程实现定时功能
解决方法:
1.定义一个线程
public class ExportThread implements Runnable{
public void run() {
while(true){
//
业务代码
//
Thread.sleep(2 * 1000); //2秒执行一次
}
}
2.在项目启动时启动线程
ExportThread expot = new ExportThread();
Thread exportThread = new Thread(expot);
exportThread.start();
本文链接:http://www.yayihouse.com/yayishuwu/chapter/1485