如何更改eclipse中文件的文本编码?

发布于 2024-10-15 21:22:07 字数 302 浏览 3 评论 0原文

我和这个人有同样的问题。不过,我会说,当我在编辑器中查看 JSP 页面时,重音符号就在那里(因为编码设置为 ISO-8859-1。根据内容确定),将其更改为 UTF8 会破坏编辑器中的字符,就像显示在网络浏览器中。我确实需要将整个项目转换为UTF8(我已在项目首选项中将其设置为UTF8),但可惜的是,我已经浪费了几个小时却一无所获。有人可以帮我解释一下吗?

I have the same problems as this guy. However I will say that when I view the JSP page in the editor the accents are there (because the encoding is set to ISO-8859-1. Determined from content), changing this to UTF8 mangles the characters in the editor the same way as shown in the web browser. I really need to convert the whole project to UTF8 (I have set it to such in project preferences) but alas, I've wasted hours and gotten nowhere yet. Can anyone shed a light on this for me please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葵雨 2024-10-22 21:22:07

在更改内容类型之前

$ iconv -f ISO-8859-1 -t UTF-8 < file.jsp > file-utf8.jsp

它对我有用 - 我使用的是 Mac。

如果你用 google 搜索一下,你会发现一些 shell 脚本可以递归地执行此操作。

附言。我没有找到更简单的方法来做到这一点。 =/

Before changing the content type

$ iconv -f ISO-8859-1 -t UTF-8 < file.jsp > file-utf8.jsp

It worked for me - I'm on a mac.

if you google arroud you will find some shell scripts to do it recursively.

PS. I didn't find a easier way to do it. =/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文