LocalDateTime 只获取到年月日时呢?
时间: 2023-07-28 18:15:54 浏览: 131
是的,`LocalDateTime`只包含年月日时分秒等时间信息,并不包含时区信息。如果你需要考虑时区,可以使用`ZonedDateTime`类来代替`LocalDateTime`。如果你只需要年月日时信息,可以使用`LocalDate`或`LocalTime`类。例如,要获取当前的年月日时,可以使用以下代码:
```java
LocalDateTime now = LocalDateTime.now();
int year = now.getYear();
int month = now.getMonthValue();
int day = now.getDayOfMonth();
int hour = now.getHour();
```
这样就可以获取到当前的年月日时信息。
相关问题
LocalDateTime 获取当前时间 年月日时分秒
好的,使用 Java 8 的 LocalDateTime 类可以获取当前时间的年月日时分秒。以下是示例代码:
```java
import java.time.LocalDateTime;
public class Main {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
int year = now.getYear();
int month = now.getMonthValue();
int day = now.getDayOfMonth();
int hour = now.getHour();
int minute = now.getMinute();
int second = now.getSecond();
System.out.printf("当前时间:%d年%d月%d日 %d时%d分%d秒", year, month, day, hour, minute, second);
}
}
```
输出结果类似于:
```
当前时间:2021年9月7日 15时37分29秒
```
LocalDateTime获取年月日
要获取LocalDateTime的年月日,可以使用format方法和DateTimeFormatter类来进行格式化。具体的代码如下所示:
```
LocalDateTime localDateTime = LocalDateTime.now();
String formattedDate = localDateTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));
System.out.println("当前日期为:" + formattedDate);
```
这段代码将会输出当前的年月日,格式为"yyyy-MM-dd",例如"2022-01-01"。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [LocalDateTime只获取年月日](https://blog.csdn.net/sinat_29774479/article/details/81483741)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文