如何在iphone上使用xmlparsing解析XML文件? [英] How to Parse XML File using xmlparsing on iphone?

查看:128
本文介绍了如何在iphone上使用xmlparsing解析XML文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在iphone上使用xmlparsing访问以下XML文件?

How do I access following XML file using xmlparsing on an iphone?

<?xml version="1.0" encoding="iso-8859-1"?>
<chapter>
 <TITLE>Title &plainEntity;</TITLE>
 <para>
  <informaltable>
   <tgroup cols="3">
    <tbody>
     <row><entry>a1</entry><entry morerows="1">b1</entry><entry>c1</entry></row>
     <row><entry>a2<<?xml version="1.0" encoding="iso-8859-1"?>
<ADDRESS>
        <CONTACT>
        <NAME FIRST="Fred" LAST="Bloggs" NICK="Bloggsie" TITLE="Mr" />
        <STREET HOME="5 Any Street" WORK="Floor 24, BigShot Tower" />
        <CITY HOME="Little Town" WORK="Anycity" />
        <COUNTY HOME="Anyshire" WORK="Anyshire" />
        <POSTAL HOME="as plain text" WORK="text" />
        <COUNTRY HOME="UK" WORK="UK" />
        <PHONE HOME="as text" WORK="text" />
        <FAX HOME="none" WORK="555" />
        <MOBILE HOME="444" WORK="333" />
        <WEB HOME="www.codehelp.co.uk" WORK="" />
        <COMPANY>Full name of company here</COMPANY>
        <GENDER>male</GENDER>
        <BDAY>Add tags for year, month and day to make this more useful</BDAY>
        <ANNI>some date long forgotten :-)</ANNI>
        <SPOUSE>angry</SPOUSE>
        <CHILDREN>Make sure this tag is one of the ones allowed to repeat in the DTD</CHILDREN>
        <COMMENT>comments here</COMMENT>
        <EMAILONE>Either use fixed tags like this, or change to a repeating tag</EMAILONE>
        <EMAILTWO>second email line</EMAILTWO>
        <EMAILTHREE>third</EMAILTHREE>
        <EMAILFOUR>fourth</EMAILFOUR>
        </CONTACT>
</ADDRESS>/entry><entry>c2</entry></row>
     <row><entry>a3</entry><entry>b3</entry><entry>c3</entry></row>
    </tbody>
   </tgroup>
  </informaltable>
 </para>
 &systemEntity;
 <section id="about">
  <title>About this Document</title>
  <para>
   <!-- this is a comment -->

  </para>
 </section>
</chapter>


推荐答案

SDK提供了两种解析XML的方法:libxml2和的NSXMLParser。 libxml2是最快的。要在项目中使用它,请转到iPhone App项目的构建设置并设置以下内容:

The SDK provides two ways to parse XML: libxml2 and NSXMLParser. libxml2 is the fastest. To use it in your project, go to the build settings for your iPhone App project and set the following:


  • 其他链接器标志= -lxml2

  • 标头搜索路径:$(SDKROOT)/ usr / include / libxml2

  • Other linker flags = -lxml2
  • Header Search Paths: $(SDKROOT)/usr/include/libxml2

然后从此页面下载XPathQuery.m和XPathQuery.h:使用libxml2进行XML解析和Cocoa中的XPath查询,它还提供了如何使用它的教程。 XPathQuery类是解析XML的简化方法。我推荐它,除非你想自己编写相同的代码,但似乎不是这样。

Then download XPathQuery.m and XPathQuery.h from this page: Using libxml2 for XML parsing and XPath queries in Cocoa, which also provides a tutorial on how to use it. That XPathQuery class is a simplified way to parse XML. I recommend it unless you want to write the same code yourself, which doesn't seem the case.

有了这个,做

NSString *string = nil; // put your html document here

NSData *htmlData = [string dataUsingEncoding:NSUTF8StringEncoding];
NSString *xpath = @"//row"; // any standard XPath expression
NSArray *nodesArray = PerformHTMLXPathQuery(htmlData, xpath);
NSDictionary *dict;
if (0<[nodesArray count]) {
    dict = [nodesArray objectAtIndex:0];
}

此时文档中的元素应该在<$ c $里面c> dict 字典。

At this point the elements from your document should be inside the dict dictionary.

这篇关于如何在iphone上使用xmlparsing解析XML文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆