Locale.getISO3Country() has the following syntax.
public String getISO3Country() throws MissingResourceException
In the following code shows how to use Locale.getISO3Country() method.
/*from www .j a v a 2s .c o m*/ import java.util.Locale; public class Main { public static void main(String[] args) { Locale locale = new Locale("ENGLISH", "US", "WIN"); System.out.println("Locale:" + locale); // print ISO3 country name for locale System.out.println("Name:" + locale.getISO3Country()); } }
The code above generates the following result.