19

我有一个org.joda.time.DateTime对象,我需要检索军事时区缩写(例如, T代表 UTC-07:00,U代表 UTC-08:00,Z代表 UTC±00:00)。

http://en.wikipedia.org/wiki/List_of_military_time_zones

这是我目前的做法:

int offset = dt.getZone().toTimeZone().getRawOffset() / (60 * 60 * 1000);
String timeZoneCode = timeZoneCodeMap.get(offset);

用如下条目初始化timeZoneCodeMap的 a在哪里HashMap<Integer, String>

timeZoneCodeMap.put(1, "A");
timeZoneCodeMap.put(2, "B");
timeZoneCodeMap.put(3, "C");
...
timeZoneCodeMap.put(-10, "W");
timeZoneCodeMap.put(-11, "X");
timeZoneCodeMap.put(-12, "Y");      
timeZoneCodeMap.put(0, "Z");

是否存在已经包含时区到军事缩写的映射的函数或库(在 Joda 或其他中)?

如果还有更好的方法来计算偏移量,请随时告诉我。

4

1 回答 1

2

这是这么少的代码,你还不如自己做......

static final String MAPPING = "YXWVUTSRQPONZABCDEFGHIKLM";
...
  String timeZoneCode = MAPPING.substring(offset + 12, offset + 13);
于 2013-11-21T07:26:04.477 回答