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

I know the week number of the year, a week is start from Sunday, then Monday, Tuesday...,Saturday.

Since I know the week number, what's the efficient way to get the dates of the specific week by using Java code??

share|improve this question
do you mean, given it is the 22nd week of 2010, what is the date of that first day of the week (with the week's first day being Sunday) – 動靜能量 Oct 15 '10 at 11:20
You'll attract more and better answers if you take the effort to accept an answer at some point... – andersoj Oct 16 '10 at 16:18

3 Answers

up vote 6 down vote accepted

If you don't want external library, just use calendar.

SimpleDateFormat sdf = new SimpleDateFormat("MM dd yyyy");
Calendar cal = Calendar.getInstance();
cal.set(Calendar.WEEK_OF_YEAR, 23);        
cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);
System.out.println(sdf.format(cal.getTime()));    
share|improve this answer

You can use the joda time library

int weekNumber = 10;
DateTime weekStartDate = new DateTime().withWeekOfWeekyear(weekNumber);
DateTime weekEndDate = new DateTime().withWeekOfWeekyear(weekNumber + 1);
share|improve this answer

You did not mention what return type do you exactly need but this code should prove useful to you. sysouts and formatter are just to show you the result.

Calendar cal = Calendar.getInstance();
cal.setTime(new Date());
cal.set(Calendar.WEEK_OF_YEAR, 30);
SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
cal.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY);
System.out.println(formatter.format(cal.getTime()));
cal.add(Calendar.DAY_OF_WEEK, 6);
System.out.println(formatter.format(cal.getTime()));

share|improve this answer
bah.. i should learn to type faster. :) – bungrudi Oct 15 '10 at 12:07
anyway, you don't need the cal.setTime(new Date()) part. – bungrudi Oct 15 '10 at 12:07

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.