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.
|
|
|||||||||||||
|
|
|
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:
Some methods are not implemented and exception handling is questionable, but it should provide a view on how it's done using Java. |
||
|
|
|
Pseudo code:
There's thousands of hits on google on how to get current date and time in Java. Good luck. |
||||||
|
|
|
start with http://java.sun.com/docs/books/tutorial/getStarted/index.html then read all about http://java.sun.com/docs/books/tutorial/essential/io/index.html and finish with http://java.sun.com/docs/books/tutorial/uiswing/misc/timer.html |
||
|
|
