Here's the locale alphabet order: wikipedia
Here's my code:

public static void main(String[] args) {
    Locale loc = new Locale("sr","RS");

    Collator col = Collator.getInstance(loc);
    col.setStrength(Collator.SECONDARY);

    List<String> slova = new ArrayList<String>();

    slova.add("Austrija");
    slova.add("Slovačka");
    slova.add("Č");
    slova.add("Đ");
    slova.add("C");
    slova.add("Grčka");
    slova.add("Slovenija");
    slova.add("Španija");
    slova.add("Švajcarska");
    slova.add("Švedska");
    slova.add("Srbija");

    Collections.sort(slova,col);

    for(String s: slova)
        System.out.println(s);
}

And here's the output:

Austrija
C
Č
Grčka
Slovačka
Slovenija
Španija
Srbija
Švajcarska
Švedska
Đ

As you can see from the link above this is not the correct ordering.
What am I doing wrong?

link|improve this question

80% accept rate
Words beginning with S and Š are mixed and Đ is not supposed to be at the end. – cbaby Nov 19 '10 at 13:43
Assumption that everyone can see that output is wrong is strong exaggerated. – Vash Nov 19 '10 at 13:52
1  
That's why I added link with alphabet order at the top and added comment pointing out what's wrong with the output. – cbaby Nov 19 '10 at 14:02
feedback

4 Answers

As I found on your wikipedia page and @Vash his ISO link. I think you mean by "sr" Serbia? Then you will have to choose "cs" as country.

Edit: it depends on the java version you use. Java 6 uses the new iso standard.

link|improve this answer
Vash's link points to outdated iso codes. I've checked supported locales and Collator does support sr_RS as well as legacy sr_CS. Using sr_CS returns the same output. – cbaby Nov 19 '10 at 14:24
ISO-3166 can't be outdated by definition. The link is from Java documentation. – Vash Nov 19 '10 at 15:10
feedback

I think that the problem could be that there is no country in ISO-3166 with code RS

link|improve this answer
1  
iso.org/iso/english_country_names_and_code_elements and when I call getAvailableLocales() on Collator i get sr_RS among the others. – cbaby Nov 19 '10 at 14:14
feedback
up vote 0 down vote accepted

Just found out it's a known issue caused by political and lingual circumstances. Thanks for help.

link|improve this answer
1  
I am not so sure about this. Sorting rules are captured by various releases of Unicode Standard (unicode.org). Current standard version (6.0) may have correct sorting rules for Serbia, but Java implements some previous snapshot. Please take a look at ICU's implementation: icu-project.org/apiref/icu4j/com/ibm/icu/text/Collator.html and see if it is sorting the right way. – Paweł Dyda Nov 19 '10 at 19:11
feedback

If the sort order you want is not available, you can create your own order with a RuleBasedCollator. Don't be scared by the documentation of this class. It is as easy as:

String rules = "< a < b < c < ç < d ...";
RuleBasedCollator myRuleBased = new RuleBasedCollator(rules);
Collections.sort(myList, myRuleBased);
link|improve this answer
Well it doesn't quite solve my problem as I need to do sort based on a lot of dynamically obtained Locales, which would mean I'd have to define a rule that would encompass over 40 different languages. Even if I was willing to write such monster, it would've be even worse nightmare to maintain it. I've opted to substitute 'sr' with similar Locale. – cbaby Nov 19 '10 at 16:12
feedback

Your Answer

 
or
required, but never shown

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