Java get System Locale

In this section, you will learn how to obtain the locale. We are providing you an example which will obtain the locale of the system by using the System.getProperty().

Java get System Locale

Java get System Locale

     

In this section, you will learn how to obtain the locale. We are providing you an example which will obtain the locale of the system by using the System.getProperty(). This will provide all the properties of the system.

System.getProperty("user.language")- This will return the locale of the system.

 

 

Here is the code of GetSystemLocale.java

class  GetSystemLocale
{
  public static void main(String[] args) 
  {
  String locale = System.getProperty("user.language");
  System.out.println("The Locale of the system is: "+locale);
  }
}

Output will be displayed as:

Download Source Code