如何强制 javax xslt 转换器使用 utf-8 而不是 html 实体对国家字符进行编码?

发布于 2024-09-05 00:53:22 字数 626 浏览 5 评论 0原文

我正在研究应该使用某些样式表转换输出的过滤器。代码的重要部分如下所示:

PrintWriter out = response.getWriter();
...
StringReader sr = new StringReader(content);
Source xmlSource = new StreamSource(sr, requestSystemId);
transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
transformer.setParameter("encoding", "UTF-8");
//same result when using ByteArrayOutputStream xo = new java.io.ByteArrayOutputStream();
StringWriter xo = new StringWriter();
StreamResult result = new StreamResult(xo);
transformer.transform(xmlSource, result);
out.write(xo.toString());

问题是国家字符被编码为 html 实体,而不是使用 UTF。有没有办法强制转换器使用 UTF-8 而不是实体?

I'm working on filter that should transform an output with some stylesheet. Important sections of code looks like this:

PrintWriter out = response.getWriter();
...
StringReader sr = new StringReader(content);
Source xmlSource = new StreamSource(sr, requestSystemId);
transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
transformer.setParameter("encoding", "UTF-8");
//same result when using ByteArrayOutputStream xo = new java.io.ByteArrayOutputStream();
StringWriter xo = new StringWriter();
StreamResult result = new StreamResult(xo);
transformer.transform(xmlSource, result);
out.write(xo.toString());

The problem is that national characters are encoded as html entities and not by using UTF. Is there any way to force transformer to use UTF-8 instead of entities?

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

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

发布评论

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

评论(1

感悟人生的甜 2024-09-12 00:53:22

您需要将输出方法设置为 text 而不是(默认)xml

transformer.setOutputProperty(OutputKeys.METHOD, "text");

但是,您还应该预先设置响应编码:

response.setCharacterEncoding("UTF-8");

并指示网络浏览器使用相同的编码:

response.setContentType("text/html;charset=UTF-8");

You need to set the output method to text instead of (default) xml.

transformer.setOutputProperty(OutputKeys.METHOD, "text");

You should however also set the response encoding beforehand:

response.setCharacterEncoding("UTF-8");

And instruct the webbrowser to use the same encoding:

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