gpt4 book ai didi

Java 将 DateFormat 时区设置为 GMT+1

转载 作者:搜寻专家 更新时间:2023-11-01 01:13:32 24 4
gpt4 key购买 nike

将 DateFormat 时区设置为 GMT+1 的正确字符串是什么?根据文档,它应该类似于“GMT + 00:00”。我已经尝试过其他形式,但显然我总是回退到 GMT(我当前的时区)。

提前致谢!

最佳答案

你可以使用

TimeZone fixedUtcPlus1 = new SimpleTimeZone(TimeUnit.HOURS.toMillis(1),
"GMT+1");
format.setTimeZone(fixedUtcPlus1);

或者只是:

TimeZone zone = TimeZone.getTimeZone("GMT+1");
format.setTimeZone(zone);

(对于围绕 +1 和 -1 的重复编辑表示歉意...我的错误诊断。“GMT+1”很好,但它的 Etc 等价物是“Etc/GMT-1”——非常困惑。)

关于Java 将 DateFormat 时区设置为 GMT+1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14940239/

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