Java Locale TRADITIONAL_CHINESE

Syntax

Locale.TRADITIONAL_CHINESE has the following syntax.

public static final Locale TRADITIONAL_CHINESE

Example

In the following code shows how to use Locale.TRADITIONAL_CHINESE field.


/*from w  w w  .j  a v a2s  .c o  m*/
import java.util.Locale;

public class Main {

   public static void main(String[] args) {
      Locale locale = Locale.TRADITIONAL_CHINESE;

      System.out.println("Locale1:" + locale);

      // print the country of this locale
      System.out.println("Country:" + locale.getCountry());

   }
}

The code above generates the following result.