Java Locale ROOT

Syntax

Locale.ROOT has the following syntax.

public static final Locale ROOT

Example

In the following code shows how to use Locale.ROOT field.


//from ww w.ja  v a 2 s.c  om
import java.util.Locale;

public class Main {

   public static void main(String[] args) {
      Locale locale = Locale.ROOT;

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

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

   }
}

The code above generates the following result.