I have the estimated time the it would take for a particular task in minutes in a float. How can I put this in a JFormattedTextField in the format of HH:mm:ss?
| ||||
|
feedback
|
|
See also: http://download.oracle.com/javase/tutorial/uiswing/components/formattedtextfield.html#format If you're not restricted to using a | |||||||||||||||
feedback
|
|
For a float < 1440 you can get around with
But be warned that if your float is greater than or equal to 1440 (24 hours) the Calendar method will just forward a day and you will not get the expected results. | |||
|
feedback
|
JProgressBar. – Andrew Thompson May 6 '11 at 17:53