Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Other than to convert to UTF-8 bytes, or write a compare function that iterates and compares, is there some method I'm missing in JDK 1.6 that compares two strings in full Unicode codepoint order instead of in UCS-2 codepoint order?

I appreciate that this is not a hard thing to code. I was puzzled, however, that 1.6 has the various 'codepoint' APIs in java.lang.String as well as the Collation system, but apparently nothing to simply compare two strings without hiccuping on the surrogates.

For the benefit of a commenter, I have to feed some data to a tool that wants the strings in this order.

share|improve this question
It already does that by default? Or do you actually want to take account with diacritics in the ordering? E.g. aa, , ab instead of (default) aa, ab, ? Otherwise I don't see any reason for this question :) – BalusC Jan 22 '10 at 21:00
String.compareTo is at least in Sun's JVM 1.6.0_16 implemented as a comparison of the contained chars. This will not work with bmargulies requirement if the string contains surrogate pairs for characters outside the BMP. – jarnbjo Jan 22 '10 at 21:43
Actually, this behaviour is described in the API documentation, so it's not an implementation detail of Sun's VM to base compareTo on the char values. – jarnbjo Jan 22 '10 at 21:55

1 Answer

up vote 1 down vote accepted

AFAIk, the API has no such method, but it should be trivial to implement it yourself. Just out of curiosity: What do you need something like that for?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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