Locale object is a representation of geographical, political, or cultural region. We can get and set our default locale through the java programs. For setting or getting default Locale we need to call static method getDefault() of Locale.
Locale locale = Locale.getDefault();
Above line of code gets the default method now we can print this default locale value. Here is the full example code of GetDefaultLocale.java as follows:
GetDefaultLocale.java
import java.util.*;
|
Output:
| C:\javaexamples>javac GetDefaultLocale.java C:\javaexamples>java GetDefaultLocale en_US |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Java get default Locale
Post your Comment