LocalDate获取时间
时间: 2023-05-26 13:01:26 浏览: 99
显示本地时间
A:LocalDate是Java 8中提供的时间数据类型,它表示日期,但不包含时间。你可以使用它来获取年月日,并进行日期计算。
以下是获取当前日期的示例代码:
```java
LocalDate currentDate = LocalDate.now();
int year = currentDate.getYear();
int month = currentDate.getMonthValue();
int day = currentDate.getDayOfMonth();
System.out.println("当前日期为:" + year + "-" + month + "-" + day);
```
你还可以使用LocalDate的方法来进行日期计算,例如增加或减少天数、月数和年数。以下是增加一天后的日期示例代码:
```java
LocalDate currentDate = LocalDate.now();
LocalDate tomorrow = currentDate.plusDays(1);
System.out.println("明天的日期为:" + tomorrow);
```
更多关于LocalDate的使用可以参考Java官方文档。
阅读全文