我如何修复org.w3c.dom.ls.LSException:字符''是无效的XML字符?

时间:2014-11-30 20:06:53

标签: java html xml

我使用java从文本创建HTML文件,但是我有一个异常(LSException): 我该如何修复“org.w3c.dom.ls.LSException:字符''是一个无效的XML字符?”

更新:代码

DOMImplementationRegistry registry = DOMImplementationRegistry.newInstance(); DOMImplementationLS impl = (DOMImplementationLS) registry.getDOMImplementation("LS");             LSSerializer writer = impl.createLSSerializer();             LSOutput output = impl.createLSOutput();             output.setEncoding(StandardCharsets.UTF_8.name());             writer.getDomConfig().setParameter("format-pretty-print", true);             output.setCharacterStream(outputStream);             processDocument(doc);             的 writer.write(getDocument(), output);

0 个答案:

没有答案