使用 Objective C 解析 XML

发布于 2024-10-08 04:02:45 字数 612 浏览 4 评论 0原文

我是 Objective C 编程新手,我需要你的帮助来解决我解析 xml 的问题。 我使用了 WCF Restful 服务,该服务返回 xml 格式的字符串。

XML 格式如下:

<Content>
<Category Id="1" Name="Software">
 <Category Id="2" Name="Windows 7"/>
</Category>
<Category Id="3" Name="Hardware">
 <Category Id="4" Name="Printers"/>
</Category>
</Content>

我正在尝试检索一个数组中的父节点和另一个数组中的子节点。

当我使用时:

NSArray *nodes=nil;
nodes=[doc nodesForXPath:@"//Category" error:nil]; 

具有节点类别的所有节点详细信息都位于数组中。但名称为 Category 的子项目不应出现在父列表中。

请建议我如何仅获取集合中的父节点和另一个集合中的子节点。

I am new to Objective C programming, i need your help to solve my problem in parsing xml.
I have consumed a WCF Restful service, the service returns a xml formatted string.

The XML format is as below:

<Content>
<Category Id="1" Name="Software">
 <Category Id="2" Name="Windows 7"/>
</Category>
<Category Id="3" Name="Hardware">
 <Category Id="4" Name="Printers"/>
</Category>
</Content>

I am trying to retrieve the parent node in a array and child nodes in another array.

When i use:

NSArray *nodes=nil;
nodes=[doc nodesForXPath:@"//Category" error:nil]; 

All the node details having the node Category comes in the array. But the child item of name Category should not come in parent list.

Please suggest me how to get only the parent node in a collection, and the child nodes in another collection.

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

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

发布评论

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

评论(1

暮年 2024-10-15 04:02:45

您可以使用 NSXMLParser 来实现这一点。它是一个 SAX 解析器。您可以找到更多 Dom 和 SAX 解析器。

you can use NSXMLParser for that. it is a SAX Parser. You can Find Some more Dom and SAX parser.

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