Snippets Collections
public void run() {

	String[] locales = Locale.getISOCountries();

	for (String countryCode : locales) {

		Locale obj = new Locale("", countryCode);

		System.out.println("Country Code = " + obj.getCountry() 
			+ ", Country Name = " + obj.getDisplayCountry());

	}

	System.out.println("Done");
    }
star

Tue Sep 06 2022 16:57:59 GMT+0000 (Coordinated Universal Time) https://mkyong.com/java/display-a-list-of-countries-in-java/

#java #own_libraries #projects_tricks

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension