eclipse .properties文件中文问题
2018-11-02 本文已影响31人
大浪滔滔
在eclipse的.properties文件中输入的中文
0=正常
-1=未知异常
保存后了变成了这样:
0=\u6b63\u5e38
-1=\u672a\u77e5\u5f02\u5e38
这是因为eclipse的.properties文件默认编码为iso-8859-1
。
解决方案1,修改编码为UTF-8
(建议)
打开 Preferences->General->Content Typle->Text->Java Properties File,将Default Encoding
从 iso-8859-1
改为 UTF-8
,点 Update 按钮,然后再点 Apply and Close。
注意:一定要点击Update按钮,否则修改不生效!
解决方案2,安装Properties Editor插件
Help -> Install New Software -> 输入:http://propedit.sourceforge.jp/eclipse/updates
选择 PropertiesEditor 进行安装。