将 DOM4J 文档的编码:UTF 更改为 ISO-8859-1 (Java)

发布于 2024-10-19 23:35:15 字数 398 浏览 2 评论 0原文

我需要创建一个 org.dom4j.Document,但当我打印它时,它始终是 UTF-8

我想将其更改为 ISO-8859-1 但我没有找到方法。 无法使用 .setEncoding() 并且文档是动态创建的(不是从 InputStream 读取)。

这与 http://www.coderanch 中讨论的问题相同。 com/t/127978/XML/change-Encoding-Dom

非常感谢!

I need to create an org.dom4j.Document but when I print it it's always UTF-8.

I want to change it to ISO-8859-1 but I didn't find the way to do it.
It's not possible to use .setEncoding() and the Document is created on the fly (not reading from an InputStream).

It's the same problem that is discussed at http://www.coderanch.com/t/127978/XML/change-Encoding-Dom

Thanks a lot!

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

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

发布评论

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

评论(1

入怼 2024-10-26 23:35:15

我相信您可以以 OutputFormat 格式设置编码类并使用它来配置 XMLWriter

OutputFormat outFormat = new OutputFormat();    
outFormat.setEncoding("ISO-8859-1");

XMLWriter out = new XMLWriter(outputStream, outFormat);
out.write(myDocumentObject);

您需要为 XMLWriter 类提供 OutputStream 或 Writer。

I believe you can set the encoding in the OutputFormat format class and use that to configure XMLWriter.

OutputFormat outFormat = new OutputFormat();    
outFormat.setEncoding("ISO-8859-1");

XMLWriter out = new XMLWriter(outputStream, outFormat);
out.write(myDocumentObject);

You will need to provide the XMLWriter class an OutputStream or Writer.

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