怎么将时间戳变成localdate
时间: 2023-06-06 17:08:50 浏览: 90
vue.js将时间戳转化为日期格式的实现代码
5星 · 资源好评率100%
可以使用Java 8中的java.time包中的Instant和LocalDate类来实现将时间戳转换为本地日期。可以使用Instant.ofEpochMilli(long timestamp)方法将时间戳转换为Instant对象,然后使用Instant.atZone(ZoneId systemDefault())方法将其转换为当前时区的ZonedDateTime对象,最后使用ZonedDateTime.toLocalDate()方法将其转换为LocalDate对象,即可获得本地日期。
阅读全文