Java 2 瞬间之间的年数

Java Years between 2 Instants

在 Joda 中,我们可以使用

计算 2 个日期时间之间的年份
Years.between(dateTime1, dateTime2);

有没有简单的方法可以使用 java.time API 而不需要太多逻辑来查找 2 个瞬间之间的年份?

ChronoUnit.YEARS.between(instant1, instant2)

失败:

Exception in thread "main" java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Years
        at java.time.Instant.until(Instant.java:1157)
        at java.time.temporal.ChronoUnit.between(ChronoUnit.java:272)
        ...

两个瞬间之间的年数被认为是 undefined(显然 - 我对此感到惊讶),但您可以轻松地将瞬间转换为 ZonedDateTime 并获得有用的结果:

Instant now = Instant.now();
Instant ago = Instant.ofEpochSecond(1234567890L);

System.out.println(ChronoUnit.YEARS.between(
  ago.atZone(ZoneId.systemDefault()),
  now.atZone(ZoneId.systemDefault())));

打印:

8

怀疑你不能直接比较瞬间的原因是因为年份边界的位置取决于时区。这意味着 ZoneId.systemDefault() 可能不是您想要的! ZoneOffset.UTC 将是一个合理的选择,否则如果有一个在您的上下文中更有意义的时区(例如,将看到结果的用户的时区),您会想要使用它。