Get three-letter short timezone name (as opposed t

2019-01-19 21:23发布

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.

2条回答
小情绪 Triste *
2楼-- · 2019-01-19 21:44

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.

查看更多
等我变得足够好
3楼-- · 2019-01-19 21:56

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());
查看更多
登录 后发表回答