LocalDate 精确到时分秒
时间: 2023-12-07 17:40:01 浏览: 96
时间插件,精确到时分秒
LocalDate类型只包含年月日信息,不包含时分秒信息。如果需要精确到时分秒,需要使用LocalDateTime类型。可以使用LocalDateTime.now()方法获取当前时间的LocalDateTime对象,然后使用DateTimeFormatter格式化输出。例如:
```java
LocalDateTime now = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
String formattedDateTime = now.format(formatter);
System.out.println("Current date and time: " + formattedDateTime);
```
输出结果类似于:Current date and time: 2022-08-31 15:30:45
--相关问题--:
1. 如何将字符串转换为LocalDate对象?
2. 如何在Java中获取当前时间?
3.
阅读全文