vote up 1 vote down star

Hi everyone, Ive created timer. How can I change the timer format to second so that it wont be long number? Thanks

private long startTime  = System.currentTimeMillis();
Timer timer  = new Timer(1000, this);
timer.start();

timer.stop();
long endTime    = System.currentTimeMillis();
long timeInMilliseconds = (endTime - startTime);
flag

80% accept rate
Which of the three JDK "Timer" clasees are you using? Or is this a Timer class from a 3rd party library? – Eddie Mar 22 at 18:13

2 Answers

vote up 0 vote down check

You can define a constant SECOND and use it like this:

new Timer(1 * SECOND, this);
link|flag
vote up 6 vote down

divide by 1000 for seconds from milliseconds.

link|flag
How could I reset the time when I click a button? I tried to use timer.reset() but it doesnt work..Thanks – Jessy Mar 22 at 17:34
As Eddie mentioned, it may depend on which implementation of Timer you are using. If .reset() doesn't behave as you expect it, you can always just throw out the current timer and instantiate a new one. – Chris Ballance Mar 22 at 21:30

Your Answer

Get an OpenID
or

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