用Java查找一个月中的天数


问题内容

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


问题答案:

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

calendar.getActualMaximum(Calendar.DAY_OF_MONTH)