localdatetime保存为字符串
时间: 2024-01-04 10:02:50 浏览: 75
java代码-SimpleDateFormat YYYY显示问题
在Java中,可以使用DateTimeFormatter类将LocalDateTime对象转换为字符串。例如:
```java
LocalDateTime now = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = now.format(formatter);
System.out.println(formattedDateTime);
```
这将把当前的LocalDateTime对象格式化为"yyyy-MM-dd HH:mm:ss"的字符串。你可以根据需要使用其他格式模式。
阅读全文