java获取localdate的日期转成字符串
时间: 2023-08-09 11:09:19 浏览: 76
java实现字符串和日期类型相互转换的方法
可以使用Java 8中的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 formattedDate = date.format(formatter); // 将日期格式化为字符串
System.out.println(formattedDate); // 输出格式化后的日期字符串
}
}
```
在上面的代码中,我们首先获取当前日期,并定义了一个格式化规则,然后使用该规则将日期格式化为字符串。最后,我们将格式化后的日期字符串输出到控制台。
阅读全文