Java Locale getISOCountries() Example
Locale class getISOCountries() method example. This example shows you how to use getISOCountries() method.
Syntax is : public static String[] getISOCountries()
Method returns a list of all 2-letter country codes defined in ISO 3166. This can be used to create Locales. This is static method.
Here is the code.
/**
* @(#) GetISOCountriesLocale.java
* A class representing use of method getISOCountries() of Locale class
in java.util Package.
* @Version 24-May-2008
* @author Rose India Team
*/
import java.util.*;
class GetISOCountriesLocale {
public static void main( String args[] ){
// getISOCountries() method call. This is static method.
String[] strArray = Locale.getISOCountries();
System.out.print("## List of all 2-letter country codes in ISO 3166.");
for (int i=0; i<strArray.length; i++ )
{
System.out.println(strArray[i]);
}
}
} |
Output of the program.
## List of all 2-letter country codes in ISO 3166.
AD AE AF AG AI AL AM AN AO AQ AR AS AT AU AW AX AZ BA BB BD BE BF BG BH BI BJ BM BN
BO BR BS BT BV BW BY BZ CA CC CD CF CG CH CI CK CL CM CN CO CR CS CU CV CX CY
CZ DE DJ DK DM DO DZ EC EE EG EH ER ES ET FI FJ FK FM FO FR GA GB GD GE GF GH GI
GL GM GN GP GQ GR GS GT GU GW GY HK HM HN HR HT HU ID IE IL IN IO IQ IR IS IT JM JO
JP KE KG KH KI KM KN KP KR KW KY KZ LA LB LC LI LK LR LS LT LU LV LY MA MC MD MG
MH MK ML MM MN MO MP MQ MR MS MT MU MV MW MX MY MZ NA NC NE NF NG NI NL NO NP
NR NU NZ OM PA PE PF PG PH PK PL PM PN PR PS PT PW PY QA RE RO RU RW SA SB SC
SD SE SG SH SI SJ SK SL SM SN SO SR ST SV SY SZ TC TD TF TG TH TJ TK TL TM TN TO TR
TT TV TW TZ UA UG UM US UY UZ VA VC VE VG VI VN VU WF WS YE YT ZA ZM ZW |
|