Java Locale TAIWAN
Syntax
Locale.TAIWAN has the following syntax.
public static final Locale TAIWAN
Example
In the following code shows how to use Locale.TAIWAN field.
/*from w w w . j ava 2 s. com*/
import java.util.Locale;
public class Main {
public static void main(String[] args) {
Locale locale = Locale.TAIWAN;
System.out.println("Locale1:" + locale);
// print the country of this locale
System.out.println("Country:" + locale.getCountry());
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »