gpt4 book ai didi

java - 获取军事时区缩写

转载 作者:IT老高 更新时间:2023-10-28 21:02:52 25 4
gpt4 key购买 nike

我有一个 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);

在哪里 timeZoneCodeMapHashMap<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 或其他中)?

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

最佳答案

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

static final String MAPPING = "YXWVUTSRQPONZABCDEFGHIKLM";
...
String timeZoneCode = MAPPING.substring(offset + 12, offset + 13);

关于java - 获取军事时区缩写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19965056/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com