Java Locale.getCountry()

Syntax

Locale.getCountry() has the following syntax.

public String getCountry()

Example

In the following code shows how to use Locale.getCountry() method.


//from ww  w .  j a v  a 2 s . co  m

import java.util.Locale;

public class Main {

   public static void main(String[] args) {
      Locale locale = new Locale("ENGLISH", "US");

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

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

   }
}

The code above generates the following result.