在Java中查找一个月中的天数

2022-01-11 00:00:00 datetime calendar java

如何在 Java 中找到一个月的天数?

How do you find the number of days in a month in Java?

推荐答案

在 Calendar 对象上设置年月,然后使用 getActualMaximum 返回最后一天:

Set the year and month on a Calendar object and then use getActualMaximum to return the last day:

calendar.getActualMaximum(Calendar.DAY_OF_MONTH) 

相关文章