使用Java获取当前时间的年月日
时间: 2023-06-28 11:12:40 浏览: 96
Java获取当前时间年月日的方法
可以使用Java中的java.time包获取当前时间的年月日,具体实现如下:
```java
import java.time.LocalDate;
public class CurrentDate {
public static void main(String[] args) {
LocalDate currentDate = LocalDate.now();
int year = currentDate.getYear();
int month = currentDate.getMonthValue();
int day = currentDate.getDayOfMonth();
System.out.println("当前时间为:" + year + "年" + month + "月" + day + "日");
}
}
```
运行输出:
```
当前时间为:2021年10月19日
```
阅读全文