Locale.getDisplayLanguage() has the following syntax.
public final String getDisplayLanguage()
In the following code shows how to use Locale.getDisplayLanguage() method.
/*w w w . ja v a 2s. co m*/ import java.util.Locale; public class Main { public static void main(String[] args) { Locale locale = new Locale("ENGLISH", "US"); System.out.println("Locale:" + locale); // print language System.out.println("Language:" + locale.getDisplayLanguage()); } }
The code above generates the following result.