How do I make java.sql.Timestamp UTC time?(如何使 java.sql.Timestamp UTC 时间?)
问题描述
public static void main(String[] args) {
LocalDateTime ldt = LocalDateTime.now();
ZonedDateTime zdt = ZonedDateTime.of(ldt, ZoneId.systemDefault());
Instant instant = Instant.from(zdt);
Timestamp timestamp = Timestamp.from(instant);
System.out.println(ldt + "
");
System.out.println(zdt + "
");
System.out.println(instant + "
");
System.out.println(timestamp + "
");
}
然后打印出来:
2017-05-07T18:13:26.969
2017-05-07T18:13:26.969-04:00[America/New_York]
2017-05-07T22:13:26.969Z
2017-05-07 18:13:26.969
如何使 SQL Timestamp 与 Instant 的保存时间相同?我需要能够从任何地方获取 Timestamp 并将其转换为它碰巧在世界那个地方的任何时间.问题是它一直保存与我的系统时钟设置的时间相同.
How can I make an SQL Timestamp save with the same time as the Instant? I need to be able to get the Timestamp from anywhere and convert it to whatever time it happens to be in that part of the world. The problem is that it keeps saving as the same time as whatever my system clock happens to be set at.
推荐答案
你最好从 LocalDateTime 中获取 Timestamp,而不是从 Instant.
You are best to get a Timestamp from a LocalDateTime, rather than from an Instant.
第一步是获取您的 ZonedDateTime 并将其转换为 GMT:
The first step is to take your ZonedDateTime and convert it to GMT:
ZonedDateTime gmt = zdt.withZoneSameInstant(ZoneId.of("GMT"));
然后您可以通过 LocalDateTime 将其转换为 Timestamp:
Then you can convert it to a Timestamp via a LocalDateTime:
Timestamp timestamp = Timestamp.valueOf(gmt.toLocalDateTime());
这篇关于如何使 java.sql.Timestamp UTC 时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使 java.sql.Timestamp UTC 时间?
基础教程推荐
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
