In Java, how does Unicode strings get compared?
What I mean is, if I have a few say, Japanese strings, when I do the following:
java.util.Arrays.sort(arrayOfJapaneseStrings);
how does those strings get compared and sorted?
|
In Java, how does Unicode strings get compared? What I mean is, if I have a few say, Japanese strings, when I do the following:
how does those strings get compared and sorted? |
|||
|
|
|
By default, Strings sort lexicographically, by Unicode order. The order is by UTF-16, so might not be exactly what you want for certain characters, but Japanese characters are all in the BMP, so you shouldn't have a problem with these. If you would like a different sort order, you can use the |
|||||||||||
|
|
By default it's in UTF-16 byte-code comparison. This is the fastest way, and hence perfect if all you need is some order (e.g. if you are going to use a binary search later, you need them to be in order, but just what "in order" means doesn't matter, so the faster the better). If you need an ordering that is sensible to a user in a given locale, use the java.text.Collator class. |
|||||||||
|
|
According to
|
|||
|
|