java中String转为LocalDateTime怎么写
时间: 2024-06-07 10:03:14 浏览: 103
在Java中String和Date、Timestamp之间的转换
5星 · 资源好评率100%
在Java中,可以使用DateTimeFormatter类的parse()方法将String类型的日期时间转换为LocalDateTime类型。具体实现代码如下:
```
String str = "2021-08-26 18:30:45";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
LocalDateTime dateTime = LocalDateTime.parse(str, formatter);
```
其中,str是待转换的字符串,formatter是指定的日期时间格式,dateTime是转换后的LocalDateTime对象。
阅读全文