日期date转为LocalDateTime
时间: 2023-11-14 10:12:45 浏览: 83
String类型转localDate,date转localDate的实现代码
5星 · 资源好评率100%
可以通过以下步骤将日期Date转换为LocalDateTime:
1.使用Date的toInstant()方法获取Instant对象。
2.使用Instant对象和ZoneId.systemDefault()方法获取ZoneId对象。
3.使用LocalDateTime的ofInstant()方法将Instant对象和ZoneId对象转换为LocalDateTime对象。
下面是一个示例代码:
```
Date date = new Date();
Instant instant = date.toInstant();
ZoneId zone = ZoneId.systemDefault();
LocalDateTime localDateTime = LocalDateTime.ofInstant(instant, zone);
```
阅读全文