Java8Instant.now()
给出了已格式化为UTC的当前时间。我在CompileJava.net上创建了一个简单的沙箱测试来验证我想要的结果:
Timestamp createdDateUtc = Timestamp.from(Instant.now());
System.out.println(createdDateUtc);
LocalDateTime databaseUtcLocal = createdDateUtc.toLocalDateTime();
ZonedDateTime databaseUtcZoned = databaseUtcLocal.atZone(ZoneId.of("UTC"));
ZonedDateTime userTimezoneTime = databaseUtcZoned.withZoneSameInstant(ZoneId.of("Asia/Qatar"));
System.out.println(userTimezoneTime.format(DateTimeFormatter.ofPattern("MM/dd/yyyy hh:mm:ss a")));
注意:目前是UTC 2018年1月12日上午11:16。
当我在在线编译器上运行这些代码时,我得到的输出是:
2018-12-01 11:17:43.637
12/01/2018 02:17:43 PM
但是,当我在本地JBOSS服务器上运行此代码时,我得到的却是以下输出:
2018-12-01 03:18:07.464
12/01/2018 06:18:07 AM
这里可能出了什么问题?我的服务器UTC时钟不正确吗?我的本地服务器的物理位置在加利福尼亚州。虽然这并不重要,但当我试图使用Instant.now()
显示UTC时间时,却得到了太平洋时间,这似乎很奇怪。
非常感谢您的帮助!
更新
正如公认的答案所指出的,问题是我的Timestamp.from()
方法:
System.out.println(Instant.now());
System.out.println(Timestamp.from(Instant.now()));
输出:
2018-12-01T11:48:33.153Z
2018-12-01 03:48:33.171
所以现在我的问题变了。如果你有类似的问题,我在这里找到了关于这个堆栈溢出的答案。我没有使用Timestamp.from(Instant.now())
,而是使用了这个丑陋的烂摊子:
Timestamp.valueOf(ZonedDateTime.of(LocalDateTime.now(), ZoneId.systemDefault()).withZoneSameInstant(ZoneId.of("UTC")).toLocalDateTime())
我认为Timestamp.toString()
方法中存在问题。如果你往里面看,你会看到:
public String toString () {
int year = super.getYear() + 1900;
int month = super.getMonth() + 1;
int day = super.getDate();
int hour = super.getHours();
int minute = super.getMinutes();
int second = super.getSeconds();
// other code
}
方法getHours()
、getMinutes()
和其他方法来自Date
类,基于文档,它们通过本地时区Date.getHours((.对其进行解释