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?
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);
I am not sure if this will be of much help, but:
Timer timer = new javax.swing.Timer(5000, myActionEvent){{setInitialDelay( 0 );}};
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.
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