vote up 1 vote down star

I've been tasked with the awesome job of generating a look-up table for our application culture information. The columns I need to generate data for are:

  • Dot Net Code
  • Version
  • Culture Name
  • Country Name
  • Language Name
  • Java Country Code
  • Java Language Code
  • Iso Country Code
  • Iso Language Code

I have found the globalization name space, but I'm sure someone out there has asked the same question, or there is a table already available.

Thanks for any help

flag

39% accept rate
AFAIK, Java does not use a proprietary set of codes for languages/countries, so What do you mean by Java country/language code? – Don Nov 10 '08 at 18:14
Well, what i mean is that for .NET we have "en-us", is there a similar type of code for Java? – Chris Nov 10 '08 at 18:24
Yes, but Java uses the ISO codes java.sun.com/j2se/1.5.0/… – Don Nov 10 '08 at 19:33
Chris, I updated my answer to address your question more directly. – sylvarking Nov 11 '08 at 19:36

4 Answers

vote up 1 vote down

Java uses the 2-letter ISO country and language codes. I recommend getting rid of the "Java Country Code" and "Java Language Code" fields in your lookup table, since they would be redundant.

I assume that wherever you get your ISO country and language codes, you'll find their corresponding names in English. However, the Java Locale API will give also you the localized names for the country and language, if you need them. (I.e., what is America called in Japan?)

For example, you can do this:

Locale l = Locale.ITALY;
System.out.println(l.getDisplayCountry() + ": " + l.getDisplayLanguage());
System.out.println(l.getDisplayCountry(l) + ": " + l.getDisplayLanguage(l));

Which, running in the US English locale prints:

Italy: Italian 
Italia: italiano

Note that you can obtain 3-letter ISO codes from the Locale class, but when constructing them, be sure to only use 2-letter codes.

link|flag
vote up 0 vote down

Java uses Locales to store this information. Most of all the information you need regarding it can be found on Sun's Internationalization page. Java uses a syntax similar to the "en-us" syntax, however rather than using a hyphen it delineates with an underscore.

link|flag
vote up 0 vote down

I'm guessing that you mean Localization or Internationalization or i18n.

Try this tutorial:
    http://java.sun.com/docs/books/tutorial/i18n/index.html

Good Luck, Randy Stegbauer

link|flag
vote up 1 vote down

That's strange, the last time I visited this page, someone had beaten me to posting the links to the Java references for Localization.

However, since their post is gone, here's what I was writing before they beat me to it.

Java uses two ISO standards for localization with java,util.Locale.

link|flag

Your Answer

Get an OpenID
or

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