我有一个
shell脚本运行我的
Java Application.Now我想指定编码格式“UTF8”到我的java应用程序使用shell脚本可以任何一个帮助.我正在使用mac os.
谢谢
Ganesh神
尝试
原文链接:https://www.f2er.com/bash/384542.html//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