How to set eclipse console locale/language

后端 未结 3 486
挽巷
挽巷 2020-11-30 01:04

When developing web application with Eclipse (Helios) the tomcat output is being sent to the console. Ok, but the messages are being translated to my OS language.

In

相关标签:
3条回答
  • 2020-11-30 01:44

    Try adding -Duser.language=en in the bottom of your eclipse.ini which is found in your eclipse installation directory (keep a backup copy of the eclipse.ini before any changes).

    0 讨论(0)
  • 2020-11-30 01:44

    Have you tried setting the following -D parameters in the launch configuration?

    -Duser.language=en -Duser.country=US -Duser.variant=EN
    
    0 讨论(0)
  • 2020-11-30 02:03

    Go to Window > Preferences > Java > Installed JREs > select preferred JRE > Edit and then add the following to Default VM arguments:

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

    enter image description here

    0 讨论(0)
提交回复
热议问题