Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想找出今年 ISO 第 1 周的星期一的日期(对于 2009 年,这将是 2008 年 12 月 29 日星期一)。
我确信joda-time可以处理这个问题,但我只是无法弄清楚 API(也许为时已晚)。
任何人都可以帮忙吗?谢谢!
另一个答案中提到的DateMidnightAPI 现在已弃用,请在下面使用:
DateMidnight
DateTime date = new DateTime().dayOfYear().withMinimumValue().withTimeAtStartOfDay();
我相信这应该有效:
DateMidnight date = new DateMidnight().withWeekOfWeekyear(1).withDayOfWeek(1);