Java XML 解析:使用 SAX 获取内部 XML

发布于 2024-10-18 00:43:05 字数 263 浏览 5 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好多鱼好多余 2024-10-25 00:43:05

对于这种情况,我建议使用 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:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文