string 转LocalDateTime
时间: 2023-11-02 07:00:34 浏览: 116
String类型转localDate,date转localDate的实现代码
5星 · 资源好评率100%
要将String类型转换为LocalDateTime类型,你可以使用DateTimeFormatter类的parse()方法。可以使用以下步骤进行转换:
1. 首先,创建一个DateTimeFormatter对象,指定期望的日期时间格式。例如,"yyyy-MM-dd HH:mm:ss"表示年-月-日 时:分:秒的格式。
2. 然后,使用DateTimeFormatter的parse()方法,将String类型的日期时间值和指定的格式作为参数传递。这将返回一个LocalDateTime对象。
下面是一个示例代码演示如何将String转换为LocalDateTime:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class StringToLocalDateTimeExample {
public static void main(String[] args) {
String dateStr = "2021-08-19 15:11:30";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
LocalDateTime dateTime = LocalDateTime.parse(dateStr, formatter);
System.out.println(dateTime);
}
}
```
在上述示例中,我们首先定义了一个String类型的日期时间值"2021-08-19 15:11:30"。然后,我们创建了一个DateTimeFormatter对象,指定了期望的日期时间格式"yyyy-MM-dd HH:mm:ss"。接下来,我们使用DateTimeFormatter的parse()方法将String类型的日期时间值和指定的格式进行解析,得到了一个LocalDateTime对象。最后,我们将转换后的LocalDateTime对象打印输出。
请注意,如果输入的日期时间格式与指定的格式不匹配,将会抛出DateTimeParseException异常。因此,在转换之前,请确保输入的日期时间值和指定的格式是一致的。
阅读全文