如何在 NekoHTML 中将文档对象的内容写入字符串?
我正在使用 NekoHTML 来解析某些 HTML 文件的内容。
除了将文档对象的内容提取到某个字符串之外,一切正常。
我尝试过使用
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
DOMSource source = new DOMSource(doc);
StreamResult result = new StreamResult(writer);
transformer.transform(source, result);
但没有返回任何内容。
I am using NekoHTML to parse contents of some HTML file..
Everything goes okay except for extracting the contents of the Document Object to some string.
I've tried uses
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
DOMSource source = new DOMSource(doc);
StreamResult result = new StreamResult(writer);
transformer.transform(source, result);
But nothing appears returned.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Oracle 应用服务器 10.3.1.4 http:// /m-hewedy.blogspot.com/2011/04/oracle-application-server-overrides.html
The problem where in Oracle App server 10.3.1.4 http://m-hewedy.blogspot.com/2011/04/oracle-application-server-overrides.html
可能的解决方案:
网址:http://totheriver.com/learn/xml/xmltutorial.html# 6.2
请参阅e) 将 DOM 序列化到 FileOutputStream 以生成 xml 文件“book.xml”。
Posible solution:
Url: http://totheriver.com/learn/xml/xmltutorial.html#6.2
See e) Serialize DOM to FileOutputStream to generate the xml file "book.xml" .