The number of "week of year" returned from a Date is wrong.

This is my code:

Calendar c = Calendar.getInstance();
c.setTime(my_date);
int num_week = c.get(Calendar.WEEK_OF_YEAR);

If my_date (type Date) is 01/01/2011, I supposed that "week of year" is 1. But it returned 52.

I try to test with these methods but I don't obtain anything:

c.setFirstDayOfWeek(6);
c.setMinimalDaysInFirstWeek(1)

If It's interesting, I'm from Spain, and our week begin on Monday.

Have I to do anything for obtain right results?

Thanks!

link|improve this question

33% accept rate
possible duplicate of Why dec 31 2010 returns 1 as week of year? – Metro Smurf Sep 1 '11 at 16:16
The first and last week of the year are dependent on locale - see link above for a duplicate question and explanation. – Metro Smurf Sep 1 '11 at 16:18
@Metro: But setting the minimal number of days of the first week to 1 should fix it regardless. – Jon Skeet Sep 1 '11 at 16:20
feedback

1 Answer

up vote 3 down vote accepted

This may be Android/Harmony-specific. For example, this works for me with desktop Java:

import java.util.*;

public class Test {
    public static void main(String[] args) {
        Calendar calendar = Calendar.getInstance();
        calendar.set(2011, 0, 1, 0, 0, 0);
        System.out.println(calendar.get(Calendar.WEEK_OF_YEAR)); // Prints 52
        calendar.setMinimalDaysInFirstWeek(1);
        System.out.println(calendar.get(Calendar.WEEK_OF_YEAR)); // Prints 1
    }
}

Can you confirm that the exact same code (modulo logging options) logs 52 twice on Android?

link|improve this answer
What happens with: Calendar.getInstance(Locale.SPAIN)? – Metro Smurf Sep 1 '11 at 16:23
@Metro: With new Locale("es") I get 1 both times. With new Locale("es", "ES") I get 52 and 1. – Jon Skeet Sep 1 '11 at 16:25
Interesting. I'm curious to see if this is Android specific. – Metro Smurf Sep 1 '11 at 16:28
Got curious and ran your sample code against every available locale on Android 2.3. All values returned incorrectly with 52/52. Then ran against Android 3.2. All locales except "fa_x" and most of "ar_x" again returned incorrectly with 52/52 (fa_x, ar_x returned 1/1). – Metro Smurf Sep 1 '11 at 18:44
@Metro: Thanks for the testing. Curious. Have you tried the Apache Harmony project on a desktop? – Jon Skeet Sep 1 '11 at 18:45
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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