给定Java 8及更高版本的 ZonedDateTime 中的java.time package,如何获得 Instant

换种方式(InstantZonedDateTime)很简单:

ZonedDateTime zdt = ZonedDateTime.ofInstant( instant , zoneId ) ;

ZonedDateTimeInstant转换为老式 java.util.Date 类是必需的。
java.util.Date date = Date.fromInstant( instant ) ;

最佳答案

您可以通过 toInstant() 接口(interface)(由 ChronoZonedDateTime 继承)使用 ZonedDateTime 默认方法。

java - 从java.time中的 `Instant`获取 `ZonedDateTime`-LMLPHP

关于java - 从java.time中的 `Instant`获取 `ZonedDateTime`,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31936664/

10-10 13:26