Java日期获取LocalDate
LocalDate now = LocalDate.now();
int yearNow = now.getYear();
int monthValueNow = now.getMonthValue();```

Java日期获取LocalDate
LocalDate now = LocalDate.now();
int yearNow = now.getYear();
int monthValueNow = now.getMonthValue();```
