我很新的Java和我试图生成将运行每5至10秒的任务,所以在5之间的区域中的任何时间间隔为10,包括10个。
我试了好东西,但没有什么工作至今。 我的最新努力是如下:
timer= new Timer();
Random generator = new Random();
int interval;
//The task will run after 10 seconds for the first time:
timer.schedule(task, 10000);
//Wait for the first execution of the task to finish:
try {
sleep(10000);
} catch(InterruptedException ex) {
ex.printStackTrace();
}
//Afterwards, run it every 5 to 10 seconds, until a condition becomes true:
while(!some_condition)){
interval = (generator.nextInt(6)+5)*1000;
timer.schedule(task,interval);
try {
sleep(interval);
} catch(InterruptedException ex) {
ex.printStackTrace();
}
}
“任务”是一个TimerTask。 我得到的是:
Exception in thread "Thread-4" java.lang.IllegalStateException: Task already scheduled or cancelled
我从知道这里是一个TimerTask不能被重用,但我不知道如何解决它。 顺便把我的TimerTask是相当复杂的,持续本身至少1.5秒。
任何帮助将非常感激,谢谢!