作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 joda.time
的 YearMonth
对象,并希望在此对象中获取月份日期的最后一天。
yearMonth.monthOfYear().getMaximumValue(); //return 12 as the maximum month value is =12
但我想要的是那个特定月份的最大天数?例如,大多数是 30 或 31。我怎样才能得到它?
最佳答案
DateTime 有这个现成的功能。
DateTime dt = new DateTime();
System.out.println(dt.dayOfMonth().getMaximumValue());
但是如果你想要它用于 YearMonth,则将 YearMonth 转换为 DateTime 并按上述操作:
YearMonth ym = new YearMonth();
dt = ym.toDateTime(null);
System.out.println(dt.dayOfMonth().getMaximumValue());
关于java - 如何在 YearMonth 对象中获取一个月的最后一天?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26136000/
我是一名优秀的程序员,十分优秀!