将SimpleDateFormat时间字符串转为LocalDateTime对象
时间: 2023-10-14 18:23:48 浏览: 89
时间字符串转换成日期对象datetime的方法
好的,可以使用下面的代码将SimpleDateFormat格式的时间字符串转为LocalDateTime对象:
```java
String time = "2021-06-20 08:30:00";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
LocalDateTime dateTime = LocalDateTime.parse(time, formatter);
```
这段代码将时间字符串"2021-06-20 08:30:00"转为LocalDateTime对象。如果时间字符串的格式不同,需要对应修改formatter的格式参数。
阅读全文