vote up -3 vote down star

Can someone please show me code in Java that stores the date and time every minute into a file? I am not sure if I need to use a loop of some sort or whether there is code itself that will do this for me.

flag
2  
What? Please clarify what you want to happen and provide an example of the output. Also, please show what code you have tried that doesn't work. – S.Lott Jul 29 at 12:36
Yea ... post your code. I haven't shredded^H^H^H^H^H^H marked a homework solution in years :-) – Stephen C Jul 29 at 12:50
1  
Dave, if people's response to your question seems harsh to you, it is because at SO they encourage showing that you have put some work in whatever problem your having. You get a better response if you show what you have tried to do to solve your issue. – James McMahon Jul 29 at 13:10
@nemo: Me? Harsh? Never! :-) – Stephen C Jul 30 at 3:24

3 Answers

vote up 0 vote down

Got it (after looking at your previous question :) )

You want to monitor, if someone (or some application) changes the system clock. And someone suggested to compare the actual timestamp with the previously observed one to detect 'unnormal' or illegal changes to the system clock.

I think, you do not need a file to store the observed values. The java application will be long running anyway (it would have to write a timestamp every minute) so can skip the file writing and keep the last observed value in memory.

The following is a quick draft:

// ...

private long lastObservedTimestamp;

public void monitorSystemClock() throws Exception {

    lastObservedTimestamp = System.currentTimeMillis(); // this is the system clock

    while(!done()) {
       Thread.sleep(60*1000); // wait a minute
       long currentTime = System.currentTimeMillis();
       if (Math.abs(currentTime-lastObservedTimestamp) > ALLOWED_SKIP &&
              isNotDaylightSavingSkip()) {
          handleIllegalSystemClockChange();
       }
       lastObservedTimestamp = currentTime;
    }
}

Some methods are not implemented and exception handling is questionable, but it should provide a view on how it's done using Java.

link|flag
you do have a big heart Andreas_D – Mustafa A. Jabbar Aug 3 at 6:25
vote up 1 vote down

Pseudo code:

While 1
    Get and store date and time
    Sleep for one minute

There's thousands of hits on google on how to get current date and time in Java.

Good luck.

link|flag
3  
Nice going, you just gave him the python code. – James McMahon Jul 29 at 12:57
I am so tempted to edit this to add the necessary :'s and ()'s. – S.Lott Jul 29 at 19:37

Your Answer

Get an OpenID
or

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