本文介绍了Java XML 解析:使用 SAX 获取内部 XML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在用 SAX 解析一个 XML 文件,在某些时候我需要一个元素的内部 XML.例如,对于以下 XML
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>
我需要获取元素 a 的内部 XML,这将是
I need to get the inner XML for the element a, which would be
<b>def<b>
最简单的方法是什么?
谢谢.
伊万
推荐答案
对于这种情况,我建议使用 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:
这篇关于Java XML 解析:使用 SAX 获取内部 XML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!