vote up -2 vote down star

I have tried to reset the timer based on the current time after clicking a button, but it doesnt work. Help :-(

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

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

timer.reset();
flag

80% accept rate
What do you expect Timer.reset to do, and what is it doing? – Paul Tomblin Mar 22 at 17:41
You need to elaborate your question and comment the code snippet: when various parts of it are run, etc. – David Hanak Mar 22 at 17:42
Atually I need to reset the time according to the most current system timer..but I got the solution now. I just need to place the startTime = System.currentTimeMillis(); again in the button actionListener method. – Jessy Mar 22 at 17:54
None of the Timer classes that are part of the JDK have a reset() method, so we need more information to know what you're trying to do. – Eddie Mar 22 at 18:08
If you have a solution, add it to the answers here and mark it as accepted. – Outlaw Programmer Mar 22 at 18:08
show 1 more comment

2 Answers

vote up 2 vote down

My magic crystal ball says you are using a javax.swing.Timer and that there is no reset() method, it is called restart().

But then it could be wrong, it would be nice if you were a bit more explicit about what you are doing ...

link|flag
Actually what I need was to start the timer again to the current system time. But it solved now...I just need to place the startTime = System.currentTimeMillis() again in ActionListener and not in main class. – Jessy Mar 22 at 18:09
vote up 0 vote down check

The solution for my program. Thanks everyone.

   public class mainClass {
        private long startTime  = System.currentTimeMillis();
        Timer timer  = new Timer(1000, this);
        .....
    }

    public mainClass {
        timer.start();
    }

    //Everytime the button stop clicked, the time will stop and reset to the most current time of the system
    public actionPerformed () {
        timer.stop();
        long endTime    = System.currentTimeMillis();
        long timeInMilliseconds = (endTime - startTime);

        **startTime  = System.currentTimeMillis();** ACCEPTED
    }
link|flag
For future reference, all Java classes (in your case, "mainClass") should start with a capital letters and you probably shouldn't use the word "class" in then name of a class. – basszero Mar 22 at 19:40
Thanks for the suggestion. – Jessy Mar 22 at 20:30

Your Answer

Get an OpenID
or

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