LocalDateTime转string
时间: 2023-07-04 22:23:38 浏览: 88
在Java中,您可以使用`DateTimeFormatter`类将`LocalDateTime`对象转换为字符串。下面是一个示例代码:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = now.format(formatter);
System.out.println("Formatted LocalDateTime: " + formattedDateTime);
}
}
```
在上面的代码中,我们首先获取当前的`LocalDateTime`对象,然后使用`DateTimeFormatter`类中的`ofPattern`方法指定日期时间格式。最后,我们使用`format`方法将`LocalDateTime`对象转换为字符串。
运行上面的代码将输出类似以下的结果:
```
Formatted LocalDateTime: 2021-08-04 11:30:00
```
请注意,您可以自定义日期时间格式,以满足自己的需求。
阅读全文