Java IDE 界面語言轉換

最近用了不同的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)

發佈了33 篇原創文章 · 獲贊 4 · 訪問量 10萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章