localDateTime和date互转
时间: 2023-04-03 18:02:11 浏览: 108
LocalDateTime在项目中的使用(LocalDateTime对接前端通过时间戳互转、LocalDateTime对接数据库)
可以使用LocalDateTime的atZone方法将其转换为ZonedDateTime,再使用toInstant方法将其转换为Instant,最后使用Date.from方法将Instant转换为Date。同样,也可以使用Date的toInstant方法将其转换为Instant,再使用Instant的atZone方法将其转换为ZonedDateTime,最后使用ZonedDateTime的toLocalDateTime方法将其转换为LocalDateTime。
阅读全文