Locale getDisplayCountry(Locale) Method in Java with Examples Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report The getDisplayCountry(Locale inLoc) method of Locale class in Java is used to get the country or region name for the specified locale. This name would be localized according to inLoc. Syntax: public String getDisplayCountry(Locale inLoc) Parameters: This method takes one parameter inLoc of Locale type which refers to the localized display of the name.Return Value: This method returns the name of the country appropriate to the given locale and to the user.Exceptions: The method throws NullPointerException if the parameter inLoc is null.Below programs illustrate the working of getDisplayCountry() method: Example 1: Java // Java code to illustrate getDisplayCountry() method import java.util.*; public class Locale_Demo { public static void main(String[] args) { // Creating a new locale Locale first_locale = new Locale("English", "In"); // Displaying first locale System.out.println("First Locale: " + first_locale); // Displaying the country_name of this locale System.out.println("Country: " + first_locale .getDisplayCountry( new Locale("Spanish", "Spain"))); } } Output: First Locale: english_IN Country: India Example 2: Java // Java code to illustrate getDisplayCountry() method import java.util.*; public class Locale_Demo { public static void main(String[] args) { // Creating a new locale Locale first_locale = new Locale("German", "Germany"); // Displaying first locale System.out.println("First Locale: " + first_locale); // Displaying the country_name of this locale System.out.println("Country: " + first_locale .getDisplayCountry( new Locale("English", "US"))); } } Java // Java code to illustrate getDisplayCountry() method import java.util.*; public class Locale_Demo { public static void main(String[] args) { // Creating a new locale Locale first_locale = new Locale("German", "Germany"); // Displaying first locale System.out.println("First Locale: " + first_locale); // Displaying the country_name of this locale System.out.println("Country: " + first_locale .getDisplayCountry( new Locale("English", "US"))); } } Output: First Locale: german_GERMANY Country: GERMANY Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Locale.html#getDisplayCountry(java.util.Locale) Comment More infoAdvertise with us Next Article Locale getDisplayCountry() Method in Java with Examples C chinmoy lenka Follow Improve Article Tags : Misc Java Java - util package Java-Functions Java-Locale +1 More Practice Tags : JavaMisc Similar Reads Locale getDisplayCountry() Method in Java with Examples The getDisplayCountry() method of Locale class in Java is used to get the country or region name for the specified locale. This name is displayed according to the convenience of the user. Syntax: LOCALE.getDisplayCountry() Parameters: This method does not take any parameters. Return Value: This meth 1 min read Locale getDisplayCountry() Method in Java with Examples The getDisplayCountry() method of Locale class in Java is used to get the country or region name for the specified locale. This name is displayed according to the convenience of the user. Syntax: LOCALE.getDisplayCountry() Parameters: This method does not take any parameters. Return Value: This meth 1 min read Locale getDisplayCountry() Method in Java with Examples The getDisplayCountry() method of Locale class in Java is used to get the country or region name for the specified locale. This name is displayed according to the convenience of the user. Syntax: LOCALE.getDisplayCountry() Parameters: This method does not take any parameters. Return Value: This meth 1 min read Locale getDisplayName(Locale) Method in Java with Examples The getDisplayName(Locale inLoc) method of Locale class in Java is used to get the whole name of the specified locale including the language, country or other variants. This is displayed according to the convenience of the user. Syntax: public String getDisplayName(Locale inLoc) Parameters: This met 2 min read Locale getDisplayName(Locale) Method in Java with Examples The getDisplayName(Locale inLoc) method of Locale class in Java is used to get the whole name of the specified locale including the language, country or other variants. This is displayed according to the convenience of the user. Syntax: public String getDisplayName(Locale inLoc) Parameters: This met 2 min read Locale getDisplayName(Locale) Method in Java with Examples The getDisplayName(Locale inLoc) method of Locale class in Java is used to get the whole name of the specified locale including the language, country or other variants. This is displayed according to the convenience of the user. Syntax: public String getDisplayName(Locale inLoc) Parameters: This met 2 min read Like