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

Is there a neat way of getting a Locale instance from its "programmatic name" as returned by Locale's toString() method? An obvious and ugly solution would be parsing the String and then constructing a new Locale instance according to that, but maybe there's a better way / ready solution for that?

The need is that I want to store some locale specific settings in a SQL database, including Locales themselves, but it would be ugly to put serialized Locale objects there. I would rather store their String representations, which seem to be quite adequate in detail.

share|improve this question

8 Answers

up vote 10 down vote accepted

See the Locale.getLanguage() , Locale.getCountry().. store this combination in the database instead of the "programatic name"... when u want to build the Locale back, use public Locale(String language, String country)

here is a sample code, :)

// may contain simple syntax error, i dont have java rite now to test.. but this is a bigger picture for ur algo...
public String localeToString(Locale l)
{
    return l.getLanguage() + "," + l.getCountry();
}

public Locale stringToLocale(String s)
{
    StringTokenizer tempStringTokenizer = new StringTokenizer(s,",");
    if(tempStringTokenizer.hasMoreTokens())
    String l = tempStringTokenizer.nextElement();
    if(tempStringTokenizer.hasMoreTokens())
    String c = tempStringTokenizer.nextElement();
    return new Locale(l,c);
}
share|improve this answer
Very good thinking, thanks! – Joonas Pulakka Mar 26 '10 at 9:59

Method that returns locale from string exists in commons-lang library: LocaleUtils.toLocale(localeAsString)

share|improve this answer
LocaleUtils.toLocale doesn't support strings like 'zh-Hans', 'pt-PT', etc. – Hans van Dodewaard Feb 21 at 15:56

Old question with plenty of answers, but here's more solutions:

http://www.java2s.com/Code/Java/Network-Protocol/GetLocaleFromString.htm

http://www.java2s.com/Code/Java/Data-Type/ConvertsaStringtoaLocale.htm

share|improve this answer
The java2s example is pretty good and also includes the variant handling – Mondain Oct 17 '11 at 14:55
The first URL is all i wanted.. Thanks – KD. Aug 24 '12 at 8:21

Since Java 7 there is factory method Locale.forLanguageTag and instance method Locale.toLanguageTag using IETF language tags.

share|improve this answer

There doesn't seem to be a static valueOf method for this, which is a bit surprising.

One rather ugly, but simple, way, would be to iterate over Locale.getAvailableLocales(), comparing their toString values with your value.

Not very nice, but no string parsing required. You could pre-populate a Map of Strings to Locales, and look up your database string in that Map.

share|improve this answer
Ah, the iteration might be quite a reasonable solution. Indeed it's surprising that Locale doens't have a static method for this. – Joonas Pulakka Mar 26 '10 at 9:55

Well, I would store instead a string concatenation of Locale.getISO3Language(), getISO3Country() and getVariant() as key, which would allow me to latter call Locale(String language, String country, String variant) constructor.

indeed, relying of displayLanguage implies using the langage of locale to display it, which make it locale dependant, contrary to iso language code.

As an example, en locale key would be storable as

en_EN
en_US

and so on ...

share|improve this answer

Because I have just implemented it:

In Groovy/Grails it would be:

def locale = Locale.getAvailableLocales().find { availableLocale ->
      return availableLocale.toString().equals(searchedLocale)
}
share|improve this answer

This answer may be a little late, but it turns out that parsing out the string is not as ugly as the OP assumed. I found it quite simple and concise:

public static Locale fromString(String locale) {
    String parts[] = locale.split("_", -1);
    if (parts.length == 1) return new Locale(parts[0]);
    else if (parts.length == 2) return new Locale(parts[0], parts[1]);
    else return new Locale(parts[0], parts[1], parts[2]);
}

I tested this (on Java 7) with all the examples given in the Locale.toString() documentation: "en", "de_DE", "_GB", "en_US_WIN", "de__POSIX", "zh_CN_#Hans", "zh_TW_#Hant-x-java", and "th_TH_TH_#u-nu-thai".

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.