在Joda-Time获得特定星期的第一天?爪哇

在Joda-Time中,有一种方法可以获取一周中第一天(星期一)的日期。

例如,我想根据今天的当前日期11/1/21找出本周的星期一是几号

提前加油。

编辑:我也希望找到一周结束的日期,即星期日的日期。干杯

回答:

试试LocalDate.withDayOfWeek:

LocalDate now = new LocalDate();

System.out.println(now.withDayOfWeek(DateTimeConstants.MONDAY)); //prints 2011-01-17

System.out.println(now.withDayOfWeek(DateTimeConstants.SUNDAY)); //prints 2011-01-23

以上是 在Joda-Time获得特定星期的第一天?爪哇 的全部内容, 来源链接: utcz.com/qa/413908.html

回到顶部