How do you create a javax.swing.Timer that fires immediately, then every t milliseconds?

妖精的绣舞 提交于 2019-12-04 03:38:10

问题


Right now, I have code that looks something like this:

Timer timer = new javax.swing.Timer(5000, myActionEvent);

According to what I'm seeing (and the Javadocs for the Timer class), the timer will wait 5000 milliseconds (5 seconds), fire the action event, wait 5000 milliseconds, fire again, and so on. However, the behavior that I'm trying to obtain is that the timer is started, the event is fired, the timer waits 5000 milliseconds, fires again, then waits before firing again.

Unless I missed something, I don't see a way to create a timer that doesn't wait before firing. Is there a good, clean way to emulate this?


回答1:


You can only specify the delay in the constructor. You need to change the initial delay (the time before firing the first event). You cannot set in the constuctor, but you can use the setInitialDelay method of the Timer class.

If you need no wait before the first firing:

timer.setInitialDelay(0);



回答2:


I am not sure if this will be of much help, but:

Timer timer = new javax.swing.Timer(5000, myActionEvent){{setInitialDelay( 0 );}};



回答3:


I wouldn't use a Timer at all, but instead use a ScheduledExecutorService

import java.util.concurrent.*

...

ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);
executor.scheduleAtFixedRate(myRunnable, 0, 5, TimeUnit.SECONDS);

Please note that there is scheduleAtFixedRate() and scheduleWithFixedDelay() which have slightly different semantics. Read the JavaDoc and find out which one you need.




回答4:


Simple solution:

Timer timer = new javax.swing.Timer(5000, myActionEvent);
myActionEvent.actionPerformed(new ActionEvent(timer, 0, null));

But I like timer.setInitialDelay(0) a lot better.



来源:https://stackoverflow.com/questions/1432766/how-do-you-create-a-javax-swing-timer-that-fires-immediately-then-every-t-milli

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!