如何从 XML 元素获取属性

发布于 2024-08-25 03:33:37 字数 128 浏览 6 评论 0原文

我已经构建了 XML 文件的 XML 树结构。我能够追踪整棵树。

当我想要检索元素的属性时,它会以 NSXMLAttributeKind 类型的 NSXMlNode 返回。如何提取属性节点中的键值对。

I have constructed an XML tree structure of an XML file. I am able to trace the entire tree.

When i want to retrieve the attributes of an element, it is returning as NSXMlNode of kind NSXMLAttributeKind. How can i extract the key value pairs in the attribute node.

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

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

发布评论

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

评论(1

忱杏 2024-09-01 03:33:37

NSXMLNode 的名称和值由方法 名称stringValue 。对于属性节点,这些是属性名称和值。

NSXMLElement 的属性由方法 属性,或者可以使用方法 attributeForName:

NSXMLNode *attr = [element attributeForName: @"data"];
NSString *name = [node name];
NSString *value = [node stringValue];

for( NSXMLNode *node in [element attributes] ) {
    NSString *name = [node name];
    NSString *value = [node stringValue];
}

The name and value of a NSXMLNode are given by methods name and stringValue respectively. For an attribute node, these are the attibute name and value.

The attributes of a NSXMLElement are given by method attributes, or a particular attribute can be accessed by name with method attributeForName:.

NSXMLNode *attr = [element attributeForName: @"data"];
NSString *name = [node name];
NSString *value = [node stringValue];

for( NSXMLNode *node in [element attributes] ) {
    NSString *name = [node name];
    NSString *value = [node stringValue];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文