Java Locale.getISOCountries()

Syntax

Locale.getISOCountries() has the following syntax.

public static String [] getISOCountries()

Example

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


/*w  w w  .j a  v  a  2s  .c  om*/

import java.util.Locale;

public class Main {

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

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

      // get ISO countries
      String[] countries = Locale.getISOCountries();

      // print countries
      System.out.println("Countries are:");
      for (int i = 0; i < countries.length; i++) {
         System.out.println(i + ":" + countries[i]);
      }
   }
}

The code above generates the following result.