概述
1、通过terminal进入eclipse的目录
2、然后cd eclipse.app/Contents进入Contents目录
3、ls查看该目录下文件,有一个Info.plist文件,使用vim 编辑Info.plist
4、添加以下代码
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>LSEnvironment</key>
<dict>
<key>JAVA_TOOL_OPTIONS</key>
<string>-Dfile.encoding=UTF-8</string>
<key>LANG</key>
<string>zh_CN.UTF-8</string>
</dict>
5、添加后的代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>LSEnvironment</key>
<dict>
<key>JAVA_TOOL_OPTIONS</key>
<string>-Dfile.encoding=UTF-8</string>
<key>LANG</key>
<string>zh_CN.UTF-8</string>
</dict>
<key>CFBundleExecutable</key>
<string>eclipse</string>
6、进入eclipse.app/Contents/MacOS找到eclipse.ini文件,使用vim eclipse.ini编辑该文件,添加一句-Dfile.encoding=UTF-8
7、关闭Eclipse,重启启动(我执行完这一步就已经可以create出不乱码的patch文件了)
8、如果不生效,执行如下命令:
/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -v -f /Applications/eclipse/eclipse.app
9、如果还不行,将/Application/Eclipse修改为其他名字,再次启动。
最后
以上就是平淡书本为你收集整理的解决MacOS下Eclipse创建patch文件乱码的方案的全部内容,希望文章能够帮你解决解决MacOS下Eclipse创建patch文件乱码的方案所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复