Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

7 Answers

up vote 6 down vote accepted

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.

The locale manpage has full info on said environment variables.

share|improve this answer
What are the LC_* environment variables ? – Leonel Jul 29 '10 at 14:32
If your program formats numbers, you probably want to set LC_ALL. See my answer below. – cayhorstmann Mar 27 '12 at 17:49

With the user.language, user.country and user.variant properties.

Example:

java -Duser.language=th -Duser.country=TH -Duser.variant=TH SomeClass

share|improve this answer
This will work, but it's safer and more future-proof to set the environment and let the JRE figure out the correct values for these. – Air May 9 '12 at 14:42

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.

share|improve this answer
The supported languages are listed at oracle.com/technetwork/java/javase/… – koppor Jan 4 at 11:48

I had to control this in a script that ran on a machine with French locale, but a specific Java program had to run with en_US. As already pointed out, the following works:

java -Duser.language=en -Duser.country=US ...

Alternatively,

LC_ALL=en_US.UTF-8 java ...

I prefer the latter.

share|improve this answer

One way to control the locale settings is to set the java system properties user.language and user.region.

share|improve this answer

If you are on Mac, simply using System Preferences -> Languages and dragging the language to test to top (before English) will make sure the next time you open the App, the right locale is tried!!

share|improve this answer

You can change on the console:

$ export LANG=en_US.utf8

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.