Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to find out the date of the Monday in this year's ISO week 1 (For 2009 this would be Monday, Dec 29 2008).

I'm sure that joda-time can handle this, but I just can't figure out the API (maybe it's just too late).

Can anyone help? Thanks!

share|improve this question

1 Answer

up vote 9 down vote accepted

I believe this should work:

DateMidnight date = new DateMidnight().withWeekOfWeekyear(1).withDayOfWeek(1);
share|improve this answer
Thanks, Blake! Exactly what I was looking for. For the archive, "withWeekOfWeekYear()" must be spelled "withWeekOfWeekyear()" (lowercase y). – otto.poellath May 7 '09 at 18:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.