Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

TimeZone.getTimeZone("US/Mountain") and TimeZone.getTimeZone("MST") are returning different results. Does MST in this java class not represent "Mountain Standard Time"?

share|improve this question
1  
A quick look on Wikipedia gives three possible time zones that abbreviate to MST, so it doesn't look sound to rely on it. – Damien_The_Unbeliever Nov 25 '11 at 6:49

1 Answer

up vote 3 down vote accepted

You should not use the short three letter names (MST) in Java. This has been deprecated since 1998 (see JDK 1.3 TimeZone).

See Sun Alert 102836 for more info on some issues and workarounds, but you should really be using long names ("America/Denver" I believe in this case).

share|improve this answer
Actually, I am looking to convert Pacific time to Mountain Time (U.S. & Canada). Meanwhile I was confused with these two options. Thanks for pointing me to the deprecation. – Cid Nov 25 '11 at 7:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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