mac eclipse svn 文件名乱码
原
创文章,转载请注明出处!
mac系统,在eclipse中用svn checkout项目后,中文文件名显示成???的问题。
mac版本:10.9.1
eclipse版本:4.2
1.关闭eclipse
2.修改eclipse.app/Contents/Info.plist,在
[xml]
<plist version="1.0">
<dict>
[/xml]
下面添加以下代码
[xml]
<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>
[/xml]
3.修改eclipse.app/Contents/MacOS/eclipse.ini,在文件末尾添加 -Dfile.encoding=UTF-8
4.执行命令:
[shell]
/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -v -f /Users/fyc/Applications/eclipse/Eclipse.app
[/shell]
我的eclipse.app路径是/Users/fyc/Applications/eclipse/Eclipse.app,这里换成自己的路径。