速度模板中的非 ASCII 字符在显示时会被破坏

发布于 2024-08-26 06:08:26 字数 141 浏览 5 评论 0原文

我的速度模板文件中有非 ASCII 字符。并且在处理时它们会出现乱码。

文件以 UTF-8 编码保存,响应标头 contentType 也设置为 text/html;charset=UTF-8

还可以做什么?

I have non-ascii chars in velocity template files. And when processed they are garbled.

The files are saved in UTF-8 encoding and response header contentType is also set to text/html;charset=UTF-8.

What else can be done?

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

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

发布评论

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

评论(1

2024-09-02 06:08:26

好的,解决方案是设置以下速度属性(Spring bean def 的一部分):

<entry key="input.encoding" value="UTF-8"/>
<entry key="output.encoding" value="UTF-8"/>

Ok, so the solution was to set up following velocity properties (part of Spring's bean def):

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