如何获取Document对象的String内容(包括标记)?
DocumentBuilderFactory 工厂 = DocumentBuilderFactory.newInstance();
DocumentBuilder 构建器=factory.newDocumentBuilder();
文档 doc = builder.newDocument();
//这里添加一些孩子...... (此应用程序应在 Android API 4 上运行) 问题是:如何获取“doc”的文本内容(包括标记)? 如果有人能给我一些建议,我将不胜感激。谢谢~!
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.newDocument();
//here append some children....
(this application should run on andoroid API 4)
the problem is : how can I get the text content(including markup) of the "doc" ?
I will appreciated if someone can give me some advice. Thanks~!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)