Android:如何检测XML标签的父标签

发布于 2024-11-08 05:33:38 字数 498 浏览 0 评论 0原文

可能的重复:
Android:如何获取特定 xml 标签下的值< /a>

大家好,我想检测 XML 文件的父标签以下载并重命名正确的文件。我在此链接上有我的代码

Possible Duplicate:
Android: How to get values in under specific xml tags

Hi guys, I want to detect the parent tags of my XML file to download and rename the correct file. I have my code on this link.

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

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

发布评论

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

评论(1

鹤仙姿 2024-11-15 05:33:38

如果您可以选择 XML 文档中的任何节点,则可以使用 XPath 的 ancestor 轴来查找所有祖先(请参阅 http://www.w3schools.com/xpath/xpath_axes.asp)。然后测试它们,如果其中一个没有自己的祖先,那么它就是您的根元素。

If you can select any node in your XML document, you can then use XPath's ancestor axis to find all ancestors (see http://www.w3schools.com/xpath/xpath_axes.asp). Then test them, and if one doesn't have its own ancestor then it's your root element.

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