| Author |
retrieving the time
|
Per Lovdinger
Ranch Hand
Joined: Jun 11, 2001
Posts: 35
|
|
Hi, I have a problem with retrieving the time for a unix application. Problem: - The date on Unix is set to GMT time (for example 12.00) - (without adjustment for daylight) - When I get the time with Date date = new java.util.Date(System.currentTimeMillis()); System.out.println("Gmt util.Date =" + date); I get the 11.00, (I expect 12.00) What is wrong ? cheers Per
|
 |
Bosun Bello
Ranch Hand
Joined: Nov 06, 2000
Posts: 1506
|
|
The Calendar class has a setTimeZone() method that you may be able to use. Bosun
|
Bosun (SCJP, SCWCD)
So much trouble in the world -- Bob Marley
|
 |
 |
|
|
subject: retrieving the time
|
|
|