将 DOM4J 文档的编码:UTF 更改为 ISO-8859-1 (Java)
我需要创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您可以以 OutputFormat 格式设置编码类并使用它来配置 XMLWriter。
您需要为 XMLWriter 类提供 OutputStream 或 Writer。
I believe you can set the encoding in the OutputFormat format class and use that to configure XMLWriter.
You will need to provide the XMLWriter class an OutputStream or Writer.