如果毫秒数少​​于 3 位,SimpleDateFormat ISO 在解析毫秒时会出现问题

发布于 2025-01-14 11:24:41 字数 1468 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

分分钟 2025-01-21 11:24:41

这是一种方法。

  • 请注意,Z 代表祖鲁语。
  • 另请记住,Date 不存储任何时区信息。
  • 如有必要,您可以在转换为 Date 之前修改 ZonedDateTime 实例。
Instant d = Instant.parse("2022-03-16T09:18:31.9Z");
Date date = Date.from(d);
System.out.println(d);
System.out.println(date);

我建议

2022-03-16T09:18:31.900Z
Wed Mar 16 05:18:31 EDT 2022

您尝试转换为使用 java.time 包,因为它们比 Date 更加优越。

Here is one way.

  • Note the Z stands for Zulu.
  • And also remember that Date does not store any time zone information.
  • If necessary, you can modify the ZonedDateTime instance before converting to Date.
Instant d = Instant.parse("2022-03-16T09:18:31.9Z");
Date date = Date.from(d);
System.out.println(d);
System.out.println(date);

prints

2022-03-16T09:18:31.900Z
Wed Mar 16 05:18:31 EDT 2022

I would recommend that you try to convert to using the classes in the java.time package as they are quite superior to Date.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文