如何获取 XML 节点的属性名称 - GDataXMLNode

发布于 2025-01-03 16:24:34 字数 222 浏览 0 评论 0原文

如何获取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 技术交流群。

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

发布评论

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

评论(3

本王不退位尔等都是臣 2025-01-10 16:24:34

下面是示例代码:

  GDataXMLElement *anynode = [GDataXMLNode elementWithName:@"anynode"];
  GDataXMLElement *anyAttribute = [GDataXMLNode attributeWithName:@"anyAttribute" stringValue:@"anyvalue"];
  GDataXMLElement *anyAttribute2 = [GDataXMLNode attributeWithName:@"anyAttribute2" stringValue:@"123"];
  [anynode addAttribute:anyAttribute];
  [anynode addAttribute:anyAttribute2];

这段代码创建节点:

  <anynode anyAttribute="anyvalue" anyAttribute2="123"/>

现在从 anynode 中提取属性值:

  NSString *attribute1 = [anynode attributeForName:@"anyAttribute"].stringValue;
  NSString *attribute2 = [anynode attributeForName:@"anyAttribute2"].stringValue;

Here's a sample code:

  GDataXMLElement *anynode = [GDataXMLNode elementWithName:@"anynode"];
  GDataXMLElement *anyAttribute = [GDataXMLNode attributeWithName:@"anyAttribute" stringValue:@"anyvalue"];
  GDataXMLElement *anyAttribute2 = [GDataXMLNode attributeWithName:@"anyAttribute2" stringValue:@"123"];
  [anynode addAttribute:anyAttribute];
  [anynode addAttribute:anyAttribute2];

This piece of code creates the node:

  <anynode anyAttribute="anyvalue" anyAttribute2="123"/>

Now to extract the attribute values from anynode:

  NSString *attribute1 = [anynode attributeForName:@"anyAttribute"].stringValue;
  NSString *attribute2 = [anynode attributeForName:@"anyAttribute2"].stringValue;
北座城市 2025-01-10 16:24:34

在您的情况(以及大多数其他情况)中,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.

浮云落日 2025-01-10 16:24:34

有一个名为“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/

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