java localdatetime format
时间: 2023-07-01 18:26:03 浏览: 74
LocalDateTimeUtil.java
可以使用 `LocalDateTime.format` 方法和 `DateTimeFormatter` 类来格式化 `LocalDateTime` 对象。
例如,将 `LocalDateTime` 格式化为字符串形式的日期和时间:
```java
LocalDateTime dateTime = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = dateTime.format(formatter);
```
在这个例子中,我们使用了 `DateTimeFormatter.ofPattern` 方法来创建一个格式化器对象,该对象使用指定的日期时间格式。然后,我们调用 `LocalDateTime.format` 方法来将 `LocalDateTime` 对象格式化为字符串形式的日期和时间,传递给它我们创建的 `DateTimeFormatter` 对象。
阅读全文