Home » Java programming language

Java Locale getISO3Country() Method with Example

Locale Class getISO3Country() method: Here, we are going to learn about the getISO3Country() method of Locale Class with its syntax and example.
Submitted by Preeti Jain, on March 08, 2020

Locale Class getISO3Country() method

  • getISO3Country() method is available in java.util package.
  • getISO3Country() method is used to get the three-letter country code for this locale when it exists, otherwise it returns a blank string ("").
  • getISO3Country() method is a non-static method, it is accessible with the class object and if we try to access the method with the class name then we will get an error.
  • getISO3Country() method may throw an exception at the time of returning country code.
    MissingResourceException – This exception may throw when three letter country code is unavailable for this Locale.

Syntax:

    public String getISO3Country();

Parameter(s):

  • It does not accept any parameter.

Return value:

The return type of the method is String, it returns three letter country code.

Example:

// Java program to demonstrate the example 
// of String getISO3Country() method of Locale 

import java.util.*;

public class GetISO3CountryOfLocale {
    public static void main(String[] args) {
        // Instantiates Locale
        Locale lo = new Locale("ENGLISH", "US", "AME");

        // Display Locale
        System.out.println("lo: " + lo);

        // By using getISO3Country() method is
        // to return 3 letter ISO code for the 
        // locale country
        String three_co = lo.getISO3Country();
        System.out.println("lo.getISO3Country(): " + three_co);
    }
}

Output

lo: english_US_AME
lo.getISO3Country(): USA



Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.