iPhone 应用程序的 xml paeser

发布于 2024-11-17 00:08:26 字数 809 浏览 0 评论 0原文

我在服务器上有一个 xml 文件,例如,如下所示:

<breakfast_menu>
    <food>
        <name>Belgian Waffles</name>
        <price>$5.95</price>
        <description>two of our famous Belgian Waffles with plenty of real maple        syrup</description>
        <calories>650</calories>
    </food>
    <food>
        <name>Strawberry Belgian Waffles</name>
        <price>$7.95</price>
        <description>light Belgian waffles covered with strawberries and whipped        cream</description>
        <calories>900</calories>
    </food>
</breakfast_menu>

我需要 xml 解析器来解析它,并将它们中的每一个输入到一个类中,例如,该类将称为食物(并且有 4 个参数:名称、价格)。 ....)。 最后创建他创建的类的数组。是否有内置的 xml 解析器可以做到这一点?

i have a xml file on a server that look for example like this one:

<breakfast_menu>
    <food>
        <name>Belgian Waffles</name>
        <price>$5.95</price>
        <description>two of our famous Belgian Waffles with plenty of real maple        syrup</description>
        <calories>650</calories>
    </food>
    <food>
        <name>Strawberry Belgian Waffles</name>
        <price>$7.95</price>
        <description>light Belgian waffles covered with strawberries and whipped        cream</description>
        <calories>900</calories>
    </food>
</breakfast_menu>

i need xml parser that will parse it and enter each one of them to a class that for examle will called food(and have 4 parameters : name,price,.....).
and finally to create an array of the classes that he create.there is built xml parser that do it?

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

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

发布评论

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

评论(2

画骨成沙 2024-11-24 00:08:26

要学习解析 xml,请查看 Brandon 提供的链接。您需要自己创建从 xml 构建类数组的要求。

我给你的建议是不要创建类,只需将数据放入 NSMutableArray 中即可。该数组将包含食物子项的 NSDictionary 对象。

For learning to parse xml, look at the links Brandon provided. Your requirement to build an array of classes from xml is something you'll need to create yourself.

A suggestion I have for you is instead of creating classes, just put the data into a NSMutableArray. The array will contain NSDictionary objects for food sub-items.

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