Sax 解析本地名称不止一次出现

发布于 2024-10-15 03:12:45 字数 420 浏览 4 评论 0原文

有没有一种聪明的方法来解析在两个不同区域中找到的标签?

@Override
public void startElement(String namespaceURI, String localName,
String qName, Attributes atts) throws SAXException {    
if (localName.equals("item")) {
       this.in_item = true;
    }
}

例子:

<xml>
   <item>
      <test1 />
      <item />
      <test2 />
   </item>
</xml>

Is there a clever way to parse a tag found in two different areas?

@Override
public void startElement(String namespaceURI, String localName,
String qName, Attributes atts) throws SAXException {    
if (localName.equals("item")) {
       this.in_item = true;
    }
}

example:

<xml>
   <item>
      <test1 />
      <item />
      <test2 />
   </item>
</xml>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

日暮斜阳 2024-10-22 03:12:45

维护 Stack 以前见过的节点,并相应地管理我们的节点。

Maintain a Stack of previously seen nodes, and manage our node accordingly.

稚然 2024-10-22 03:12:45

当我遇到上述情况时,我只是将布尔变量 find1item 设置为 true,当查找下一个项目时,我检查该项目并再次将 find1item 设置为 false。如果嵌套更深,可能很难实现,但如果只嵌套一次,则很简单。

When I had the above case I just set a Boolean var found1item to true and when finding the next item I check for this item and set found1item to false again. If you have deeper nesting it might be hard to implement, but if it is only nested once it is simple.

人间☆小暴躁 2024-10-22 03:12:45

取父节点和子节点,首先用父节点迭代循环,然后用子节点迭代循环。

take parent nodes and child nodes, 1st iterate the loop with parent node, then iterate the loop with child nodes.

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