Java.util.Locale.getCountry() Method



Description

The java.util.Locale.getCountry() method returns the country/region code for this locale, which will either be the empty string or an uppercase ISO 3166 2-letter code.

Declaration

Following is the declaration for java.util.Locale.getCountry() method

public String getCountry()

Parameters

NA

Return Value

This method does not return a value.

Exception

NA

Example

The following example shows the usage of java.util.Locale.getCountry() method.

package com.tutorialspoint;

import java.util.*;

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

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

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

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

Let us compile and run the above program, this will produce the following result −

Locale1:english_US
Country:US
java_util_locale.htm
Advertisements