java LocalDateTime 转String
时间: 2023-07-07 14:35:03 浏览: 480
在Java中String和Date、Timestamp之间的转换
5星 · 资源好评率100%
可以使用DateTimeFormatter类将LocalDateTime对象转换为String对象,示例代码如下:
```java
LocalDateTime dateTime = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = dateTime.format(formatter);
System.out.println(formattedDateTime);
```
其中,`DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")`指定了转换的格式,具体格式可以根据需要进行修改。
阅读全文