Locale getDisplayName(Locale) Method in Java with Examples Last Updated : 29 Apr, 2019 Comments Improve Suggest changes Like Article Like Report 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 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 display language appropriate to the given locale. Exceptions: The method throws NullPointerException if the parameter inLoc is null. Below programs illustrate the working of the getDisplayName() method: Program 1: Java // Java code to illustrate getDisplayName() method import java.util.*; public class Locale_Demo { public static void main(String[] args) { // Creating a new locale Locale first_locale = new Locale("en", "In"); // Displaying first locale System.out.println("First Locale: " + first_locale); // Displaying the locale System.out.println("Language: " + first_locale .getDisplayName( new Locale("fr", "French"))); } } Output: First Locale: en_IN Language: anglais (Inde) Program 2: Java // Java code to illustrate getDisplayName() method import java.util.*; public class Locale_Demo { public static void main(String[] args) { // Creating a new locale Locale first_locale = new Locale("en", "US"); // Displaying first locale System.out.println("First Locale: " + first_locale); // Displaying the locale System.out.println("Language: " + first_locale .getDisplayName( new Locale("En", "In"))); } } Output: First Locale: en_US Language: English (United States) Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Locale.html#getDisplayName(java.util.Locale) Comment More infoAdvertise with us Next Article Locale getDisplayName(Locale) 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 getDisplayLanguage(Locale) Method in Java with Examples The getDisplayLanguage(Locale inLoc) method of Locale class in Java is used to get the language name for the specified locale. If at all it is possible, the name returned will be localized according to inLocale. Syntax: public String getDisplayLanguage(Locale inLoc) Parameters: This method takes one 2 min read Locale getDisplayName() Method in Java with Examples The getDisplayName() 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: LOCALE.getDisplayName() Parameters: This method does not take any parameter 1 min read Locale getDisplayCountry(Locale) Method in Java with Examples 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 ty 2 min read Locale getDisplayLanguage() Method in Java with Examples The getDisplayLanguage() method of Locale class in Java is used to get the language name for the specified locale. This name is displayed according to the convenience of the user. Syntax: LOCALE.getDisplayLanguage() Parameters: This method does not take any parameters. Return Value: This method retu 1 min read Locale getDisplayVariant(Locale inLoc) Method in Java with Examples The getDisplayVariant(Locale inLoc) method of Locale class in Java is used to get the name for the localeâs variant code mentioned in the specified locale and is appropriately displayed to the user. If the variant code is not mentioned in the locale the function returns an empty string. Syntax: publ 2 min read Like