Java的:安排在随机的时间间隔任务(Java: Scheduling a task in rand

2019-07-18 10:28发布

我很新的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秒。

任何帮助将非常感激,谢谢!

Answer 1:

尝试

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();
    }
}


Answer 2:

创建一个新的Timer为每一个任务,而不是像你已经这样做了: timer= new Timer();

如果你想你的代码与线程任务同步,使用信号量和不sleep(10000) 如果你幸运的话这可能会实现,但它绝对是错误的,因为你不能确定你的任务真正完成。



文章来源: Java: Scheduling a task in random intervals