localdatetime获取年月日
时间: 2023-04-30 20:03:17 浏览: 201
Java获取各种时间
可以使用Java8中的LocalDateTime类来获取年月日信息。
例如:
LocalDateTime now = LocalDateTime.now();
int year = now.getYear();
int month = now.getMonthValue();
int day = now.getDayOfMonth();
这样就可以获取当前的年、月、日信息了。
阅读全文