Locale.getISOCountries() has the following syntax.
public static String [] getISOCountries()
In the following code shows how to use Locale.getISOCountries() method.
/*www. ja v a 2 s. c o m*/ 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.