我正在尝试从 java.sql.Date 转换为 ZonedDateTime。这是我正在使用的代码
ZonedDateTime.from(new java.util.Date(result.get(0).getTime()).toInstant())
但是,它会导致以下错误 -
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.time.DateTimeException: Unable to obtain LocalDateTime from TemporalAccessor: 2016-09-29T18:30:00Z of type java.time.Instant
有没有办法进行这种转换?