How do I go about making a timer that will increment the time in a JFormattedTextField?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Look at http://download.oracle.com/javase/6/docs/api/javax/swing/Timer.html

This lets you execute an ActionListener repeatedly in the Swing event thread with a specified delay.

The just get and set the value from the textfield.

Edit: not a Runnable but an ActionListener

link|improve this answer
Speedy response. That probably means I was googling poorly. Thanks. – dah May 4 '11 at 18:19
Would it be accurate to do a Thread.sleep for (1000) and then just have it update the field with a second added? – dah May 4 '11 at 18:22
2  
No, you generally don't want to use a Thread.sleep() as that will block your UI in the meantime. If you just want to call it once, call timer.setRepeats(false). – Reverend Gonzo May 4 '11 at 18:30
Ahh. I just read that link and it's simple and seems to be perfect, thanks. – dah May 4 '11 at 19:00
1  
+1 javax.swing.Timer is a good choice for this. See also this example. – trashgod May 4 '11 at 20:41
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.