2010-12-13 58 views
7

我有一個運行我的Java應用程序的shell腳本。現在我想指定編碼格式「UTF8」到我的Java應用程序使用shell腳本可以任何一個help.I使用mac os。在外殼腳本中設置編碼格式爲java

感謝
Ganesh神

+0

你是什麼意思是「指定的編碼格式 「UTF8」 我的Java應用程序「? – 2010-12-13 06:02:13

回答

13

嘗試

//invoking the compiler when your source code contains naked UTF-8 characters. 
javac.exe -encoding UTF-8 MyClass.java 

//setting the default encoding on the command line 
java.exe "-Dfile.encoding=UTF-8" -jar myprog.jar 

來源:http://mindprod.com/jgloss/encoding.html