如何使用 NSXMLParser 将标签名称和值添加到 NSMutableDictionary

发布于 2025-01-08 17:43:19 字数 472 浏览 0 评论 0 原文

我想要实现的目标是,拥有这样的 XML 结构:

<parent>
  <nodename1>NodeText1</nodename1>
  <nodename2>NodeText2</nodename2>
  ...
  <nodenamex>NodeTextx</nodenamex>
</parent>

在解析时,将其设置为 NSMutableDictionary 中的 key=>value 对,其中 key 是节点名称,value 是节点文本。但是,我不知道如何链接它们,因为如果我理解正确的话,节点名会在 didStartElement 中被识别,并且节点文本会在 foundCharacters 中被拾取,对吗?有谁知道该怎么做?我可以发布到目前为止的代码,但它非常基本。

谢谢,

What I'm trying to achieve is to say, having an XML structure like this:

<parent>
  <nodename1>NodeText1</nodename1>
  <nodename2>NodeText2</nodename2>
  ...
  <nodenamex>NodeTextx</nodenamex>
</parent>

And upon parsing, set it into an NSMutableDictionary into key=>value pairs where key is the nodename and the value is nodetext. However, I have no idea how to link them both because, if I understand correctly, the nodename is recognized in didStartElement and nodetext gets picked up in foundCharacters, right? Does anyone know how to do this? I can post the code I have so far but it's pretty basic.

Thanks,

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

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

发布评论

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

评论(1

蓬勃野心 2025-01-15 17:43:19

在 didStartElement 方法中,当您将节点名称标识为“parent”时,创建一个字典。
在找到的字符中,将值存储在字符串对象中。
在 didEndElement 方法中,如果字符串值(在 findcharacters 中)不为 null,则添加到以键作为元素名称的字典中。现在,释放字符串值并将其赋值为 nil。

In the didStartElement method, when you identify node name as "parent", create a dictionary.
In found characters, store the value in string object.
In didEndElement method, if string value (you have in foundcharacters) is not null then add into a dictionary with key as element name. Now, release the string value and assigned it to nil.

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