Home Java Java-get-example Java get System Locale
Questions:Ask|Latest



Java get System Locale
Posted on: November 1, 2008 By Deepak Kumar
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

     

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


Recommend the tutorial

Ask Questions?    Discuss: Java get System Locale   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 
Comments