Java.util.Locale.getDisplayCountry() 方法


Java.util.Locale.getDisplayCountry() 方法

package com.codingdict;

import java.util.*;

public class LocaleDemo {
   public static void main(String[] args) {

      // create a new locale
      Locale locale = new Locale("ENGLISH", "US");

      // print locale
      System.out.println("Locale:" + locale);

      // print locale display name
      System.out.println("Display Name:" + locale.getDisplayCountry());
   }
}