import java.io.UnsupportedEncodingException;
import java.util.Locale;

public final class ForeignTextDemo {

    public static void main(String[] args) throws UnsupportedEncodingException {
        Locale locale = new Locale("TW");
        System.out.println(locale.getDisplayLanguage(Locale.TRADITIONAL_CHINESE));
        locale = new Locale("CN");
        System.out.println(locale.getDisplayLanguage(Locale.SIMPLIFIED_CHINESE));
    }

}

When I run the program above, I get the following output:

契維文
cn

But, if I change the second locale to locale = new Locale("ZH");, I get the desired output of:

契維文
中文

Why is this? What I really want is the display language for Simplified Chinese. Is "ZH" just that?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Just "cn" isn't the locale, the full local is "zh_CN" to differentiate with "tw_CN".

See the list of supported locales.

locale1 = new Locale("zh", "cn")
println locale1.getDisplayLanguage(locale1)
println locale1.getDisplayLanguage(Locale.TRADITIONAL_CHINESE)
println locale1.getDisplayLanguage(Locale.SIMPLIFIED_CHINESE)
println locale1.getDisplayLanguage(Locale.TAIWAN)
println locale1.getDisplayCountry(locale2)
println locale1.country

println ""

locale2 = new Locale("tw", "cn")
println locale1.getDisplayLanguage(locale2)
println locale2.getDisplayLanguage(Locale.TRADITIONAL_CHINESE)
println locale2.getDisplayLanguage(Locale.SIMPLIFIED_CHINESE)
println locale2.getDisplayLanguage(Locale.TAIWAN)
println locale2.getDisplayCountry(locale2)
println locale2.country
link|improve this answer
Where did you get "tw_CN" because it works? – mre Nov 9 '11 at 15:06
From the list of supported locales. – Dave Newton Nov 9 '11 at 15:06
I don't see it in that list.. – mre Nov 9 '11 at 15:06
@mre Hmm, yeah, you're right, sorry--I think I got that from a previous JDK's list of locales, and I guess it's still supported. – Dave Newton Nov 9 '11 at 15:08
@mre You know how it is with Taiwan and the mainland; I guess Sun/Oracle is hedging their bets ;) – Dave Newton Nov 9 '11 at 15:08
show 5 more comments
feedback

According to the Javadoc for java.util.Locale, the single-arg constructor for Locale() expects an ISO 639-1 language code. The ISO 639-1 language code for Chinese is "ZH".

What you are actually providing with both your "TW" and "CN" strings are the ISO 3166-1 Country Codes for Taiwan and China.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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