Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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")));

    }
}