如何在 iPhone 中使用 NSXML Parser 解析 xml 数据?

发布于 2024-10-31 13:27:51 字数 463 浏览 2 评论 0原文

我想使用 NSXMLParser 解析 XML 数据。我的根节点是位置,我想提取街道、城市、州和邮政编码的值。我可以获取名称属性值以及如何获取地址节点的内部值。

这是 xml 节点,

<location id="10001">
<name>Pugal Devan</name>
    <address>
        <street>112, Jawahar Street </street>
        <city>Kolkata</city>
        <state>West Bengal</state>
        <postal_code>10002</postal_code>
</address>
</location>

谢谢!

I want to parse the XML data using NSXMLParser. In my root node is location and i want to extract the values for street, city, state and postal_code. I could take the name attribute values and how can i take the inner values of address node.

Here the xml node is,

<location id="10001">
<name>Pugal Devan</name>
    <address>
        <street>112, Jawahar Street </street>
        <city>Kolkata</city>
        <state>West Bengal</state>
        <postal_code>10002</postal_code>
</address>
</location>

Thanks!

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

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

发布评论

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

评论(1

遥远的绿洲 2024-11-07 13:27:51

您可以创建一个如下所示的类:

@interface Location {

    NSString* name;
    NSString* street;
    NSString* city;
    NSString* state;
    NSString* postalCode;

}

然后只需使用普通方法来解析 XML,同时创建 Location 对象来保存解析的数据。这是一个非常详尽的示例如何解析数据。

You could create a class that looks like:

@interface Location {

    NSString* name;
    NSString* street;
    NSString* city;
    NSString* state;
    NSString* postalCode;

}

Then just use the normal methods to parse the XML while creating Location objects to hold the parsed data. Here is a very thorough example on how to parse the data.

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