Java, XML DocumentBuilder - setting the encoding when parsing(Java、XML DocumentBuilder - 解析时设置编码)
问题描述
我正在尝试将保存 XML
文档的树(扩展 JTree
)保存为已更改其结构的 DOM 对象
.
I'm trying to save a tree (extends JTree
) which holds an XML
document to a DOM Object
having changed it's structure.
我创建了一个新的文档对象,遍历树成功检索了内容(包括XML
文档的原始编码),现在有了一个ByteArrayInputStream
具有正确编码的树内容(XML
文档).
I have created a new document object, traversed the tree to retrieve the contents successfully (including the original encoding of the XML
document), and now have a ByteArrayInputStream
which has the tree contents (XML
document) with the correct encoding.
问题是当我解析 ByteArrayInputStream
时,编码会自动更改为 UTF-8
(在 XML
文档中).
The problem is when I parse the ByteArrayInputStream
the encoding is changed to UTF-8
(in the XML
document) automatically.
有没有办法防止这种情况并使用 ByteArrayInputStream
中提供的正确编码.
Is there a way to prevent this and use the correct encoding as provided in the ByteArrayInputStream
.
值得补充的是,我已经使用了transformer.setOutputProperty(OutputKeys.ENCODING, encoding)
方法来检索正确的编码.
It's also worth adding that I have already used the
transformer.setOutputProperty(OutputKeys.ENCODING, encoding)
method to retrieve the right encoding.
任何帮助将不胜感激.
推荐答案
这是一个更新的答案,因为 OutputFormat 已被弃用:
Here's an updated answer since OutputFormat is deprecated :
TransformerFactory tf = TransformerFactory.newInstance();
Transformer transformer = tf.newTransformer();
transformer.setOutputProperty(OutputKeys.ENCODING, "ISO-8859-1");
StringWriter writer = new StringWriter();
transformer.transform(new DOMSource(document), new StreamResult(writer));
String output = writer.getBuffer().toString().replaceAll("
|
", "");
第二部分将 XML 文档作为字符串返回
The second part will return the XML Document as String
这篇关于Java、XML DocumentBuilder - 解析时设置编码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java、XML DocumentBuilder - 解析时设置编码
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 转换 ldap 日期 2022-01-01
- 获取数字的最后一位 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01