Java Locale.getISO3Country()

Syntax

Locale.getISO3Country() has the following syntax.

public String getISO3Country()   throws MissingResourceException

Example

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


/* ww w.j  av  a  2  s  .  c o  m*/


import java.util.Locale;

public class Main {

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

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

      // print ISO3 country name for locale
      System.out.println("Name:" + locale.getISO3Country());

   }
}

The code above generates the following result.