Name: rlT66838 Date: 06/27/2000
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
I have problem with class Collator when I use it with swedish locale. This code
will show the problem.
import java.util.*;
import java.text.*;
import java.io.*;
class Person implements Comparable, Serializable {
private String code;
private String name;
public Person(String code, String name) {
this.code = code;
this.name = name;
}
public int compareTo(Object o) {
Person anotherPerson = (Person) o;
Collator col = Collator.getInstance(new Locale("sv", "SE"));
return col.compare(this.code, anotherPerson.code);
}
public String toString() {
return code + "\t" + name;
}
}
class TestSort
{
public TestSort() {
List users = new LinkedList();
users.add(new Person("aa", "Johan"));
users.add(new Person("bb", "Nils"));
users.add(new Person("cc", "Anna"));
users.add(new Person("cc", "Linda"));
users.add(new Person("aq", "Viktor"));
Collections.sort(users);
showUsers(users);
}
private void showUsers(List users) {
Iterator it = users.iterator();
System.out.println("code\tname");
while (it.hasNext()) {
System.out.println(it.next());
}
System.out.println("");
}
public static void main(String[] args) {
new TestSort();
}
}
Start the application with java TestSort. The output will be
code name
aq Viktor
bb Nils
cc Anna
cc Linda
aa Johan
The problem is that the line with code aa should come first. It works fine if i
use Locale.US.
It also works fine when I use Linux with java -version
Classic VM (build 1.2.2, -L, green threads, nojit)
(Review ID: 106570)
======================================================================
- duplicates
-
JDK-4804273 Letter combination AA not sorted properly in Swedish Locale
-
- Resolved
-