JSP标签的字符集

发布于 2025-01-04 06:28:33 字数 411 浏览 1 评论 0原文

关于JSP标签字符集的简单问题。

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@taglib  tagdir="/WEB-INF/tags" prefix="custom" %>
<custom:mytag>  </custom:mytag>

mytag 是简单的 .tag 文件,位于 WEB-INF/tags 中。 eclipse中该文件的字符集是UTF-8。由于某种原因,UTF-8 符号无法正确显示。

这仅影响包含标签,包含的另一个 jsp-s 显示正常

Simple question about charset of JSP tags.

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@taglib  tagdir="/WEB-INF/tags" prefix="custom" %>
<custom:mytag>  </custom:mytag>

mytag is simple .tag file located in WEB-INF/tags. Charset of this file in eclipse is UTF-8. For some reason UTF-8 symbols do not display properly.

This affect only including tags, another jsp-s that was included display fine

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

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

发布评论

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

评论(2

·深蓝 2025-01-11 06:28:33

放置在标记文件中的 <%@tag pageEncoding="UTF-8"%> 会有所帮助。

标签指令属性类似于其page对应项。

<%@tag pageEncoding="UTF-8"%> placed in your tag file will help.

Tag directive attributes resemble ones of its page counterpart.

昨迟人 2025-01-11 06:28:33

就我而言,问题在于 pageEncoding 属性的声明顺序。我发现 pageEncoding 属性必须是 @tag 指令之后声明的第一个属性。

不正确<%@tag description="some description" pageEncoding="UTF-8"%>

正确: < ;%@tag pageEncoding="UTF-8" description="一些描述"%>

In my case, the problem was the order of declaration of pageEncoding attribute. I figured out that pageEncoding attribute must be the first attribute declared right after @tag directive.

Incorrect: <%@tag description="some description" pageEncoding="UTF-8"%>

Correct: <%@tag pageEncoding="UTF-8" description="some description"%>

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