I18N Section Index | Page 8
Where can I find a list of the ISO-639 language codes used to create Locale objects?
The Unicode Consortium provides a nicely formatted table for display at http://www.unicode.org/unicode/onlinedat/languages.html.more
Where do I find a complete list of ISO-3166 country codes for creating Locale objects?
The National Information Standards Organization (NISO) provides a list of codes at http://www.niso.org/3166.html.
How do I properly alphabetize (sort) a list of strings in a language-sensitive manner?
This is actually outside the scope of the Collections Framework. Instead, it is part of the java.text package with the Collator and CollationKey classes.
The following example demonstrates this c...more