如何获取 XML 节点的属性名称 - GDataXMLNode
如何获取GDataXMLNode中XML节点的属性名称。
我需要从中获取“anyAttribute”和“anyAttribute2”...
<anynode anyAttribute="anyvalue" anyAttribute2="123"/>
有一个方法可以实现这一点,还是我应该尝试其他选项?
How to get the Attribute name of a XML Node in GDataXMLNode.
I'll need get "anyAttribute" and "anyAttribute2" from this...
<anynode anyAttribute="anyvalue" anyAttribute2="123"/>
There is a method for that or should i try other option?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
下面是示例代码:
这段代码创建节点:
现在从 anynode 中提取属性值:
Here's a sample code:
This piece of code creates the node:
Now to extract the attribute values from anynode:
在您的情况(以及大多数其他情况)中,GDataXMLNode 实际上是 GDataXMLElement 子类的实例,因此只需将 GDataXMLNode 向下转换为 GDataXMLElement 并按属性名称(如果您知道它们)或通过 GDataXMLElement 实例的 attribute 属性提取属性。
In your case (and most other cases) the GDataXMLNode will actually be the instance of the GDataXMLElement subclass, so simply downcast the GDataXMLNode to GDataXMLElement and extract attributes by their names (if you know them) or via the attributes property of the GDataXMLElement instance.
有一个名为“AQXMLParser”的开源组件具有此功能。尝试一下:
http://www.alexcurylo.com/blog/2009/06/ 09/code-aqxmlparser/
There is an open source component called "AQXMLParser" that has this feature. Give it a try:
http://www.alexcurylo.com/blog/2009/06/09/code-aqxmlparser/