Java XML 解析:使用 SAX 获取内部 XML
我正在使用 SAX 解析 XML 文件,有时我需要元素的内部 XML。例如,对于以下 XML,
<a name="abc">
<b>def</b>
<a>
我需要获取元素 a 的内部 XML,这将是
<b>def<b>
最简单的方法是什么?
谢谢。
伊万
I'm parsing an XML file with SAX and at some point I need the inner XML of an element. E.g., for the following XML
<a name="abc">
<b>def</b>
<a>
I need to get the inner XML for the element a, which would be
<b>def<b>
What's the easiest way to do that?
Thanks.
Ivan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于这种情况,我建议使用 2 个内容处理程序。第一个负责查找文档的相关部分,第二个负责处理内容。我对类似问题的回答(请参阅下面的链接)演示了如何实现此方法:
For this type of situation I suggest using 2 content handlers. The first is responsible for finding the relevant part of the document, and the second for processing the content. My answer to a similar question (see link below) demonstrates how to implement this approach: