Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get three-letter short timezone name (as opposed to four-letter)?

I've written an Android app that needs the short timezone name in which the handset is currently located.

I'm using the following code:

String timeZone = Calendar.getInstance().getTimeZone().getDisplayName(false, TimeZone.SHORT);

When running in Chicago, this returns "CST". In New York, "EST". In Strasbourg, France, it's returning "HNEC" (Heure Normale de l'Europe Centrale in French).

The timezone in this location is referred to by some as "Central European Time" (see Wikipedia's Time zones of Europe).

I'm passing timeZone off to a third-party system which very much insists on getting "CET" (not "HNEC"). Is there an API call I can rely on to return the three-letter (and, I think, "more modern") short timezone name?

As my code runs in more and more locations, I'm guessing this problem is going to occur elsewhere, too.

I'm really hoping to avoid maintaining some sort of map of three-letter to four-letter short timezone names.

like image 437
lance Avatar asked May 10 '10 23:05

lance


2 Answers

I'm sorry, but you're probably stuck maintaining a mapping. The three-character are actually the older, not more modern version. From the classdocs:

    For compatibility with JDK 1.1.x, some other three-letter time zone IDs (such as "PST", "CTT", "AST") are also supported. However, their use is deprecated because the same abbreviation is often used for multiple time zones (for example, "CST" could be U.S. "Central Standard Time" and "China Standard Time"), and the Java platform can then only recognize one of them.

If it were my problem, I'd get the list my third-party system supports and map it.

like image 176
CPerkins Avatar answered Sep 29 '22 16:09

CPerkins


You could just use SimpleDateFormat to print the time zone in three letters or full name. For example:

DateFormat getTimeZoneShort = new SimpleDateFormat("z", Locale.US);
String timeZoneShort = getTimeZoneShort.format(Calendar.getInstance().getTime());

DateFormat getTimeZoneLong = new SimpleDateFormat("zzzz", Locale.US);
String timeZoneLong = getTimeZoneLong.format(Calendar.getInstance().getTime());
like image 20
Chris Stillwell Avatar answered Sep 29 '22 16:09

Chris Stillwell