gpt4 book ai didi

java - 每个 JDK 版本的时区值都会发生变化

转载 作者:行者123 更新时间:2023-11-30 04:13:36 28 4
gpt4 key购买 nike

当我在同一台机器上编译并运行以下代码语句时,我得到两个不同的时区值。

public class TimeZoneDemo {
public static void main( String args[] ){

// create time zone object
TimeZone timezone = TimeZone.getDefault();

// checking time zone value
System.out.println(timezone);
}
}

JDK 1.6.35

Tue Sep 24 06:25:03 VET 2013
sun.util.calendar.ZoneInfo[id="America/Caracas",offset=-16200000,dstSavings=0,useDaylight=false,transitions=5,lastRule=null]

JDK 1.7.02

Tue Sep 24 22:56:54 MAGT 2013
sun.util.calendar.ZoneInfo[id="Asia/Magadan",offset=43200000,dstSavings=0,useDaylight=false,transitions=66,lastRule=null]

操作系统: Window 7 64 位。

最佳答案

时区是根据 JVM 而不是 JDK 设置的。您可以使用以下命令针对 jvm 设置此值:

Duser.timezone="Europe/Sofia"

如果您将其传递给 JVM,那么当您更改版本时,您将始终拥有相同的时区。

神谕documentation关于 TimeZone.getDefault() 提到...

Gets the default TimeZone for this host. The source of the default TimeZone may vary with implementation.

关于java - 每个 JDK 版本的时区值都会发生变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18979861/

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