java怎么把 yyyy-MM-dd HH:mm 字符串 转成yyyy-MM-dd HH:mm LocaDate
时间: 2024-06-13 09:05:27 浏览: 96
date-reviver:一个实用程序模块,用于解析具有日期字符串属性的日期字符串和类似对象的结构。 支持类型防护
可以使用Java 8中的DateTimeFormatter和LocalDateTime类来实现将字符串转换为LocalDateTime对象,然后再使用toLocalDate()方法将其转换为LocalDate对象。具体步骤如下:
```java
import java.time.LocalDateTime;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
String str = "2022-12-31 23:59";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm");
LocalDateTime dateTime = LocalDateTime.parse(str, formatter);
LocalDate date = dateTime.toLocalDate();
System.out.println(date);
}
}
```
上述代码中,首先定义了一个字符串str和一个DateTimeFormatter对象formatter,用于指定字符串的格式。然后使用LocalDateTime类的parse()方法将字符串解析为LocalDateTime对象dateTime。最后使用toLocalDate()方法将其转换为LocalDate对象date,并输出结果。
阅读全文