user4531138
user4531138

Reputation:

How to set the language of javac in English permanently in eclipse

I installed the JDK SE8, and the javac compiler messages are in russian.

I tried everything but it can't be changed. Somebody help me. Thanks

Upvotes: 2

Views: 638

Answers (1)

ajbee
ajbee

Reputation: 3641

Try passing this argument: -J-Duser.language=en.

To set it permanently in the windows registory : REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v JAVA_TOOL_OPTIONS /d -Duser.language=en /t REG_SZ /f

For other operating systems - set it as an environment variable using your preferred method.

Upvotes: 3

Related Questions