LocalDate转字符串
时间: 2024-01-11 17:47:36 浏览: 79
java基础知识
你可以使用`DateTimeFormatter`类将`LocalDate`对象转换为字符串。以下是一个示例代码:
```java
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class LocalDateToStringExample {
public static void main(String[] args) {
LocalDate date = LocalDate.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String strDate = date.format(formatter);
System.out.println(strDate);
}
}
```
在上面的示例中,我们首先创建了一个`LocalDate`对象,然后创建了一个`DateTimeFormatter`对象来定义日期格式。最后,我们使用`format`方法将日期转换为字符串。输出结果应该类似于"2021-08-16"。
阅读全文