LocalDateTime 分为年月日和时分秒
时间: 2023-10-14 19:03:25 浏览: 168
时间控件年-月-日 时:分:秒
4星 · 用户满意度95%
LocalDateTime可以通过使用DateTimeFormatter来分别获取年月日和时分秒。对于年月日的获取,可以使用"yyyy-MM-dd"的格式化模式;对于时分秒的获取,可以使用"HH:mm:ss"的格式化模式。以下是获取年月日和时分秒的示例代码:
```java
LocalDateTime localDateTime = LocalDateTime.now();
String date = localDateTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));
String time = localDateTime.format(DateTimeFormatter.ofPattern("HH:mm:ss"));
System.out.println("日期:" + date);
System.out.println("时间:" + time);
```
输出结果为:
```
日期:2022-08-30
时间:09:15:30
```
因此,可以使用DateTimeFormatter来将LocalDateTime对象分别格式化为年月日和时分秒。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [JAVA 获取当前时间(年月日时分秒)](https://blog.csdn.net/qq_39207963/article/details/122663142)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文