Java: How to get the timestamp of #39;1000-01-01 00:00:00#39; in UTC?(Java:如何在 UTC 中获取“1000-01-01 00:00:00的时间戳?)
问题描述
我在两个不同的结果中得到了1000-01-01 00:00:00"的时间戳.有人知道为什么吗?
I got the timestamp of '1000-01-01 00:00:00' in two different results. Does anybody know why?
TimeZone timeZone = TimeZone.getTimeZone(ZoneOffset.UTC);
GregorianCalendar calendar = new GregorianCalendar(timeZone);
calendar.clear();
calendar.set(1000, 0, 1, 0, 0, 0);
System.out.println(calendar.getTimeInMillis()); // print -30609792000000
System.out.println(ZonedDateTime.of(1000, 1, 1,0, 0, 0, 0, timeZone.toZoneId()).toInstant().toEpochMilli()); // print -30610224000000
推荐答案
GregorianCalendar
尽管它的名字使用的是儒略历,但在公历从 1582 年开始引入之前.相比之下,ZonedDateTime
使用 Proleptic 公历a>,也就是说,将公历外推到当时没有使用它的世纪.
GregorianCalendar
despite its name uses the Julian calendar for the time before the Gregorian calendar was introduced from 1582 and onward. ZonedDateTime
by contrast uses the Proleptic Gregorian calendar, that is, extrapolates the Gregorian calendar into the centuries where it wasn’t used at that time.
所以您实际上是在使用两个日历系统.这就解释了为什么你会得到两个不同的结果.
So you are really using two calendar systems. Which explains why you are getting two different results.
这篇关于Java:如何在 UTC 中获取“1000-01-01 00:00:00"的时间戳?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java:如何在 UTC 中获取“1000-01-01 00:00:00"的时间


- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 获取数字的最后一位 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 转换 ldap 日期 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01