LocalDateTime 转yyyy-MM-dd HH
时间: 2023-11-09 14:50:37 浏览: 323
Spring Boot 将yyyy-MM-dd格式的文本字符串直接转换为LocalDateTime出现的问题
5星 · 资源好评率100%
可以使用DateTimeFormatter类中的ofPattern方法将LocalDateTime对象转换为指定格式的字符串。在这种情况下,您可以使用"yyyy-MM-dd HH"作为日期时间格式的模式。下面是一个示例代码:
```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");
String formattedDateTime = now.format(formatter);
System.out.println(formattedDateTime);
}
}
```
这将打印出当前的LocalDateTime对象转换为"yyyy-MM-dd HH"格式的字符串。
阅读全文