I just wanna ask what is the efficient way to get the week numbers of a certain month. I have a function with month number & year as arguments, the return value of the function should be a int array which contain the week numbers of the specific month.(like following...)

public int[] getWeeksOfMonth(int month, int year){
            //what's the efficient way to implement this??
}
link|improve this question

65% accept rate
The question is not clear and accept answers to your previous questions. – Emil Oct 25 '10 at 11:05
duplicate of one of your other question you didn't accepted ! stackoverflow.com/questions/3941700/… – Alois Cochard Oct 25 '10 at 11:10
Please accept any previous answers that may have solved your problem posed. – Romain Hippeau Oct 25 '10 at 12:31
feedback

3 Answers

up vote 4 down vote accepted

The WEEK_OF_YEAR attribute of the Calendar class can be usefull for you.

Create a new date that will be the first day of the given month. Get the week of the year for this day, let say you got start value.

Create a new date that will be the last day of the given month. Get the week of the year for this day, so now you got end value.

Finally, create a simple int[] that will contains values from start to end.

link|improve this answer
2  
You dont have to iterate through the whole month. Just have a look at the first day's week, say s, and the last day's week, say e, and build the array holding e-s+1 values from s to e. – Flinsch Oct 25 '10 at 11:18
@Flinsch Yes, you're right. I've updated my answer. – romaintaz Oct 25 '10 at 11:44
Flinsch: This will not work in all cases. See for example January 2010. The three first days of the year belong to week 53. The fourth day belongs to week 1. – Grodriguez Oct 25 '10 at 12:17
You're right, sorry. So you need special case handling for s>e (which only may apply for january) as follows: If s>e: build array like { s, 1, ..., e }. Else: build array like { s, ..., e }. – Flinsch Oct 25 '10 at 12:36
feedback

I am not sure whether you want to return an array of length equal to the number of days in the month, with each value being the week number for the corresponding day, or an array of all distinct week numbers for the days in the specified month. Assuming it is the former, this should work:

public static int[] getWeeksOfMonth(int month, int year)
{
    Calendar cal = Calendar.getInstance();
    cal.set(Calendar.YEAR, year);
    cal.set(Calendar.MONTH, month);
    cal.set(Calendar.DAY_OF_MONTH, 1);

    int ndays = cal.getActualMaximum(Calendar.DAY_OF_MONTH);
    int weeks[] = new int[ndays];
    for (int i = 0; i < ndays; i++)
    {
        weeks[i] = cal.get(Calendar.WEEK_OF_YEAR);
        cal.add(Calendar.DATE, 1);
    }
    return weeks;
}

If you want an array of distinct week numbers for the days in the specified month:

public static Integer[] getWeeksOfMonth(int month, int year)
{
    Calendar cal = Calendar.getInstance();
    cal.set(Calendar.YEAR, year);
    cal.set(Calendar.MONTH, month);
    cal.set(Calendar.DAY_OF_MONTH, 1);

    Set<Integer> weeks = new HashSet<Integer>();
    int ndays = cal.getActualMaximum(Calendar.DAY_OF_MONTH);
    for (int i = 0; i < ndays; i++)
    {
        weeks.add(cal.get(Calendar.WEEK_OF_YEAR));
        cal.add(Calendar.DATE, 1);
    }

    return weeks.toArray(new Integer[0]);
}

(Note this last example returns an array of Integer objects, but it is trivial to modify it to return an array of int instead)

link|improve this answer
feedback
  1. Create Calendar instances for the first and last day of the month.
  2. then on each instance invoke the get(Calendar.WEEK_OF_YEAR)
  3. Step [2] will return starting and ending index for the weeks
link|improve this answer
Note that it can happen that (end index < start index). – Grodriguez Oct 25 '10 at 12:34
hmm - how? as long as it's the same month we're dealing with, how can it be that the endIndex < startIndex? – anirvan Oct 26 '10 at 8:34
feedback

Your Answer

 
or
required, but never shown

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