Android:如何检测XML标签的父标签
可能的重复:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以选择 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.