为什么 Eclipse 显示 UTF-8 编码的文件不同?
Eclipse 配置为将文本文件解释为 UTF-8 编码。为什么它不支持 *.properties 文件编辑器中的这些设置?
名为 db.properties 的文本文件包含 2 字节版权字符(八进制 302 251)。该文件似乎被解释为 ASCII(或 ISO-8859-1),而不是配置的 UTF-8...
$ od -bc db.properties | head -2
0000000 043 040 103 157 160 171 162 151 147 150 164 040 302 251 040 062
# C o p y r i g h t © ** 2
这是加载此文件的 Eclipse 编辑器的屏幕截图。
如果文件只是重命名为 db.txt,则版权符号会正确显示。
这表明 Eclipse 处理 .properties 文件的方式与配置为解释为 UTF-8 的纯文本文件不同。有没有办法配置 Eclipse 将 .properties 文件视为 UTF-8?
平台...
Mac OSX 10.15.7
Eclipse IDE,适用于企业 Java 和 Web 开发人员(包括孵化组件)
版本:2021-12 (4.22.0) 内部版本号:20211202-1639
Eclipse is configured to interpret text files as UTF-8 encoding. Why does it not honor these settings in the Editor for *.properties files?
A text file named db.properties contains the 2-byte copyright character (302 251 octal). The file appears to be interpreted as ASCII (or ISO-8859-1) instead of UTF-8 as configured...
$ od -bc db.properties | head -2
0000000 043 040 103 157 160 171 162 151 147 150 164 040 302 251 040 062
# C o p y r i g h t © ** 2
Here is a screenshot of the Eclipse editor with this file loaded.
If the file is simply renamed to db.txt, the copyright symbol is displayed properly.
This suggests that Eclipse is treating .properties files differently than plain text files, configured to be interpreted as UTF-8. Is there a way to configure Eclipse to treat .properties files as UTF-8?
Platforms...
Mac OSX 10.15.7
Eclipse IDE for Enterprise Java and Web Developers (includes Incubating components)
Version: 2021-12 (4.22.0)
Build id: 20211202-1639
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看
首选项->一般->内容类型-> Java 属性文件
默认编码显示为
ISO-8859-1
。可以在那里更改默认编码。
Look at
Preferences -> General -> Content types -> Java Properties File
The default encoding appears as
ISO-8859-1
.Default encoding can be changed there.