8

我对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 秒。

任何帮助将不胜感激,谢谢!

4

2 回答 2

14

尝试

public class Test1 {
    static Timer timer = new Timer();

    static class Task extends TimerTask {
        @Override
        public void run() {
            int delay = (5 + new Random().nextInt(5)) * 1000;
            timer.schedule(new Task(), delay);
            System.out.println(new Date());
        }

    }

    public static void main(String[] args) throws Exception {
        new Task().run();
    }
}
于 2013-01-18T17:03:44.733 回答
1

Timer而是为每个任务创建一个新任务,就像您已经做的那样:timer= new Timer();

如果您想将代码与线程任务同步,请使用信号量而不是sleep(10000). 如果你很幸运,这可能会奏效,但肯定是错误的,因为你不能确定你的任务是否真的完成了。

于 2013-01-18T16:38:35.943 回答