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 = Locale.PRC;

        System.out.println("Locale1:" + locale);

        // print the country of this locale
        System.out.println("Country:" + locale.getCountry());

    }
}