I used following code, but it displays only 2 digit of ISO country name. For example, for "INDIA", it only display "IN". Can I show full name as "INDIA" ?
String[] loc= Locale.getISOCountries();
for(int a=0;a<loc.length;a++)
{
System.out.println("ISO Contry "+a+":"+loc[a]);
}
I want full name of ISO country. Is it possible to get using this method?