-
Bug
-
Resolution: Not an Issue
-
P5
-
None
-
1.1.6
-
sparc
-
solaris_2.6
Name: jh38747 Date: 01/21/98
JDK version:1.1.6.
In class Locale, some methods work different from previous version under Locale zh. They are:
getDisplayCountry(), getISO3Country,
1.1.3 1.1.6
getDisplayCountry Öйú
getISO3Country CHN
getISO3Language chs cho
==========================t3.java============================
import java.util.Locale;
public class t3 {
public static void main(String args[]) {
Locale myLocale = new Locale("zh", "", "");
System.out.println(myLocale.getDisplayCountry());
System.out.println(myLocale.getISO3Country());
System.out.println(myLocale.getISO3Language());
}
}
jim.hu@prc 1998-01-21