字符串时间格式转为LocalDateTime 年月日时分秒
时间: 2023-11-18 13:56:48 浏览: 734
时间戳转年月日时分秒
可以使用Java中的DateTimeFormatter类将字符串时间格式转为LocalDateTime年月日时分秒。具体步骤如下:
1. 创建DateTimeFormatter对象,指定字符串时间格式,例如:"yyyy-MM-dd HH:mm:ss"。
2. 调用DateTimeFormatter的parse方法,将字符串时间解析为LocalDateTime对象。
下面是一个示例代码:
```
String strTime = "2022-01-01 12:00:00";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
LocalDateTime dateTime = LocalDateTime.parse(strTime, formatter);
```
这样就可以将字符串时间格式转为LocalDateTime年月日时分秒了。
阅读全文