java代码:如何定时执行任务,例如每天的12点整执行System.out.println("now"); 10
展开全部
如果你是在项目中使用,用quartz,如何使用自己搜索。
如果你只是做测试,可用线程。
public class Test implements Runable{
public void run() throws Exception{
while(true){
long time = System.currentTime().getTime();
if(判断time是否是12:00){
System.out.println("");
}
sleep(1000); // 暂时1秒.
}
}
}
//main方法中
Thread t = new Thread(new Test());
t.start();
如果你只是做测试,可用线程。
public class Test implements Runable{
public void run() throws Exception{
while(true){
long time = System.currentTime().getTime();
if(判断time是否是12:00){
System.out.println("");
}
sleep(1000); // 暂时1秒.
}
}
}
//main方法中
Thread t = new Thread(new Test());
t.start();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询