標籤:style blog java http tar ext
網站代碼主要使用GBK編碼格式,Eclipse預設開啟的是UTF8編碼,所以經常是需要進行轉換一下的,否則一些中文字元就會亂碼顯示。
1.配置workspace的編碼格式:windows->Preferences->general->Workspace,右側Text file encoding,選擇Other,改變為GBK;
2.配置工程的編碼格式:Project->Preferences->Resource->Text file encoding;
3.配置java檔案的編碼格式:windows->Preferences->general->ContentTypes->Java Source File->UTF-8 ==Update;
4.做RCP應用的Product輸出時、或者外掛程式輸出時,則總是出錯,要麼不能編譯通過(輸出時要重新compile)、要麼輸出的外掛程式運行時中文顯示亂碼。此時需要再RCP應用、或外掛程式Plugin工程的 build.properties中增加一行,javacDefaultEncoding.. = UTF-8。讓輸出時編譯知道java源檔案時UTF-8編碼。這個設定需要保證所有的java源檔案時UTF-8編碼格式,如果不全是,可以參考 Eclipse幫中(Plug-in Development Environment Guide > Reference > Feature and Plug-in Build configuration),建議全部java源檔案是UTF-8編碼。
1.在eclipse.ini的-vmargs下面加上「-Dfile.encoding=UTF-8」。
2.eclipse-->Window-->Preferences-->General-->Workspace-->Text file encoding-->UTF-8
3.Installed JREs-->Default VM Arguments:-->-Dfile.encoding=UTF-8
4.eclipse-->Run-->Run Configurations-->Arguments-->VM arguments-->-Dfile.encoding=UTF-8
5.eclipse-->Run-->Run Configuration-->Common 頁籤--> Console Encoding-->Others-->UTF-8
==>亂碼!
5.eclipse-->Run-->Run Configuration-->Common 頁籤--> Console Encoding-->Others-->big5
==>ok!
參考資料:
http://eggboss.iteye.com/blog/639841