LocalDateTime 转变格式为年月日时分秒
时间: 2023-07-28 09:21:19 浏览: 100
时间戳转年月日时分秒
可以使用DateTimeFormatter类将LocalDateTime对象格式化为指定的日期时间字符串。例如,将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); // 输出格式化后的时间字符串
```
输出结果类似于:2022-01-01 12:34:56。其中,"yyyy-MM-dd HH:mm:ss"表示日期时间格式,具体含义如下:
- yyyy:年份,例如:2022
- MM:月份,例如:01
- dd:日期,例如:01
- HH:小时,例如:12
- mm:分钟,例如:34
- ss:秒钟,例如:56
你可以根据自己的需要更改日期时间格式。
阅读全文