• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Time Zone Issues on Windows

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm experiencing timezone problems with Java 1.6 on Windows.

Instead of using the Asia/Calcutta time zone which Windows is using, it is using the America/Caracas time zone.

I checked the Windows time through the system clock firstly, then checked

HKEY_LOCAL_MACHINE/SYSTEM/ControlSet001/control/TimeZoneInformation are set as Eastern Standard Time.
HKEY_LOCAL_MACHINE/SYSTEM/ControlSet002/control/TimeZoneInformation are set as Eastern Standard Time.

HKEY_LOCAL_MACHINE/SYSTEM/ControlSet003/control/TimeZoneInformation are set as Indian Standard Time.
HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/control/TimeZoneInformation are set as Indian Standard Time.

HKEY_LOCAL_MACHINE/SYSTEM/Select ---- Current and Default value are 3.

Java version is 1.6

if it is referring to a time set elsewhere?

Please help me to fix this issue.
 
Ranch Hand
Posts: 344
Oracle Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This might be a bug in the JVM. You can specify the timezone on the java command line: -Duser.timezone="Asia/Calcutta"
 
reply
    Bookmark Topic Watch Topic
  • New Topic