Java tutorial
import java.util.Locale; public class Main { public static void main(String[] args) { Locale locale = new Locale("ENGLISH", "US"); System.out.println("Locale:" + locale); //display name - result is based on inLocale System.out.println("Display Name:" + locale.getDisplayCountry(new Locale("GERMAN", "GERMANY"))); } }