java incorrect timezone(java时区不正确)
问题描述
我有一个 Java 实例,它似乎使用了一个完全不正确的时区.Windows 使用的不是澳大利亚/悉尼时区,而是美国/加拉加斯时区.
I have an instance of Java which seems to be using a completely incorrect time zone. Instead of using the Australia/Sydney time zone which Windows is using, it is using the America/Caracas time zone.
我先通过系统时钟查看Windows时间,然后查看HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/
和ControlSet001
、ControlSet002
.全部设置为悉尼时区.
I checked the Windows time through the system clock firstly, then checked HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/
and ControlSet001
, ControlSet002
. All are set to a Sydney time zone.
有人知道这是否是 Java 中的错误,还是指的是其他地方设置的时间?
Does anybody know if this is a bug in Java, or if it is referring to a time set elsewhere?
Java 版本为 1.6.0_06
Java version is 1.6.0_06
推荐答案
确保在启动应用程序时为 JVM 设置了时区:
Ensure you set the timezone for the JVM when starting the application:
-Duser.timezone="Australia/Sydney"
这篇关于java时区不正确的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:java时区不正确
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01