为什么变音符号和特殊字符在我的 Grails 页面中无法正确显示?
如何确保 Grails 使用正确的编码 (UTF-8)?
How do I make sure the correct encoding (UTF-8) is used by Grails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何确保 Grails 使用正确的编码 (UTF-8)?
How do I make sure the correct encoding (UTF-8) is used by Grails?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
比我想象的容易 - 只需确保您的编辑器设置为 UTF-8 编码即可。
Easier than I thought - simply make sure your editor is set to UTF-8 encoding.
我发现有时将文件类型设置为 UTF-8 还不够。 有时你需要告诉AppServer。
<代码>
response.setContentType("text/html; charset=UTF-8");
request.setCharacterEncoding("UTF-8");
I've found that sometimes setting the file type to UTF-8 isn't enough. Sometimes you need to tell the AppServer.
response.setContentType("text/html; charset=UTF-8");
request.setCharacterEncoding("UTF-8");
也许你不应该使用UTF-8。 也许您应该尝试 8859 ISO 字符集之一:http:// /www.global-translation-services.com/iso8859.html#ISO-8859-1
Maybe you shouldn't use UTF-8. Maybe you should try one of the 8859 ISO charsets:http://www.global-translation-services.com/iso8859.html#ISO-8859-1