Are there any constants for language codes like "en" or "de" in java or in a java library? (Or is using the strings OK?)

I know that something like

Locale.COUNTRY-NAME.getLanguage()

would work, but I am searching for something more streamlined like

Locale.LANGUAGE-NAME
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I am afraid there aren't constants for all languages. You do have several predefined Locales such as Locale.UK Locale.US, etc. Each locale has a language code which can be obtained via the getLanguage() method.

To get all language code supported by the underlying JVM use getISOLanguages()

for(String lang : Locale.getISOLanguages()) {
  System.out.println(lang);
}

More details: http://download.oracle.com/javase/1.4.2/docs/api/java/util/Locale.html

link|improve this answer
feedback

Yup.. Use Locale.COUNTRY-NAME

link|improve this answer
Not the same thing. Martin's looking for language codes, not country codes. They don't necessarily map 1:1 to each other. – Michael Petrotta Aug 28 '11 at 20:43
@Michael: You are right. – Martin Schlagnitweit Aug 28 '11 at 20:49
1  
you can use locale to get the language like so Locale local = Locale.ENGLISH; local.getLanguage(); – Varun Achar Aug 28 '11 at 20:50
feedback

Your Answer

 
or
required, but never shown

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