When I use the default java locale on my linux machine it comes out with the US locale settings, where do I change this so that it comes out with the correct locale?
|
|
I believe java gleans this from the environment variables in which it was launched, so you'll need to make sure your LANG and LC_* environment variables are set appropriately. |
||
|
|
|
|
You could call during init or whatever Locale.setDefault() or -Duser.language=, -Duser.country=, and -Duser.variant= at the command line. Here's something on Sun's site. |
||
|
|
|
|
One way to control the locale settings is to set the java system properties user.language and user.region. |
||
|
|
|
|
With the Example:
|
||
|
|
