iphone :- 如何从 xml 解析器获取数据?

发布于 2024-10-12 05:30:05 字数 72 浏览 1 评论 0 原文

我想从 xml 解析器获取数据? 我如何从 xml 解析器获取? 有哪些方法可以实现?我怎样才能得到它?

任何例子

i want to get data from xml parser ?
how can i get from xml parser ?
which methods for that and how can i get that ?

any example for that

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

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

发布评论

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

评论(2

奶茶白久 2024-10-19 05:30:05

NSXMLParser 调用您的“委托”,它必须实现某些方法。当解析器调用您的委托时,您将获取当时的数据。

对于我的简单 xml 文件,我只实现了主要的“Element”文件,它只识别 ,并像这样开始...

    - (void)parser:(NSXMLParser *)parser 
                didStartElement:(NSString *)elementName 
                namespaceURI:(NSString *)namespaceURI 
                qualifiedName:(NSString *)qName 
                attributes:(NSDictionary *)attributeDict
    {
        // we here recognize our one crucial element, "place", and its attributes.
        if([elementName compare:@"place"] == 0)
        {
            OmWayPoint p = {0};

            p.lat = [[attributeDict valueForKey:@"lat"] doubleValue];
            p.lon = [[attributeDict valueForKey:@"lon"] doubleValue];
            p.alt = [[attributeDict valueForKey:@"alt"] doubleValue];
            int wpCount = [self addWayPoint:&p];
...
        }

NSXMLParser calls your "delegate", which has to implement certain methods. When the parser calls your delegate, you grab the data at that time.

For my simple xml file, I just implement the main "Element" one, which only recognizes <place lat="number" lon="number"... , and starts like this...

    - (void)parser:(NSXMLParser *)parser 
                didStartElement:(NSString *)elementName 
                namespaceURI:(NSString *)namespaceURI 
                qualifiedName:(NSString *)qName 
                attributes:(NSDictionary *)attributeDict
    {
        // we here recognize our one crucial element, "place", and its attributes.
        if([elementName compare:@"place"] == 0)
        {
            OmWayPoint p = {0};

            p.lat = [[attributeDict valueForKey:@"lat"] doubleValue];
            p.lon = [[attributeDict valueForKey:@"lon"] doubleValue];
            p.alt = [[attributeDict valueForKey:@"alt"] doubleValue];
            int wpCount = [self addWayPoint:&p];
...
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文