Java IDE 界面语言转换

来源:互联网 发布:创建软件限制策略 编辑:程序博客网 时间:2024/05/14 23:28

最近用了不同的Java IDE,但是因为用惯了英文版,所以都把原来自动安装成中文版的IDE都改回英文版。 

Following are the ways for different IDE to change the language form chinese to english:

(1) NetBean 6.0

Open the file netbeans.conf (for example X:/NetBeans 6.0/etc/netbeans.conf)

(You should backup this file first for safety)

Pay attention to following original configuration:

netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Xverify:none -J-Dapple.laf.useScreenMenuBar=true"

Then we can append '-J-Duser.language=en -J-Duser.country=US' in the quotation mark.

After amended:

netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Xverify:none -J-Dapple.laf.useScreenMenuBar=true -J-Duser.language=en -J-Duser.country=US"

(2) WebShpere 5.1

Open the file wsappdev.ini (for example X:/IBM/WebSphere Studio/Application Developer/v5.1/wsappdev.ini)

(You should backup this file first for safety)

Pay attention to following original configuration:

-Duser.language=zh -Duser.region=CN

Then we can amend them as following:

-Duser.language=en -Duser.region=US

 

(I will update this article to tell about eclipse later)

原创粉丝点击