localdatetime转换date
时间: 2023-05-02 19:05:12 浏览: 121
Java8中的LocalDateTime和Date一些时间操作方法
将LocalDateTime转换为Date,可以通过LocalDateTime的toLocalDate()方法得到LocalDate,再通过LocalDate的toEpochDay()方法转换成long类型的时间戳,最后通过Date的构造方法将时间戳转换为Date类型的日期。
阅读全文
Java8中的LocalDateTime和Date一些时间操作方法