IOS學習筆記27—使用GDataXML解析XML文檔

來源:互聯網
上載者:User

在IOS平台上進行XML文檔的解析有很多種方法,在SDK裡面有內建的解析方法,但是大多情況下都傾向於用第三方的庫,原因是解析效率更高、使用上更方便,關於IOS平台各種解析XML庫的優缺點分析,可以看下這篇文章:http://www.raywenderlich.com/553/how-to-chose-the-best-xml-parser-for-your-iphone-project

這裡主要介紹一下由Google提供的一種在IOS平台上進行XML解析的開源庫GDataXML,可以到http://code.google.com/p/gdata-objectivec-client/source/browse/trunk/Source/XMLSupport/下載源碼,下載下來後進入檔案夾找到XMLSupport檔案夾,將裡面的GDataXMLNode.h和GDataXMLNode.m檔案拖拽到項目中建立的檔案夾即可(我這裡是建的GDataXML檔案夾),注意要選中複製檔案到項目中而不是只是引用,



然後就是對工程進行一些配置,點擊工程根目錄然後點擊左邊的Target,進入Build Phases,然後點擊第三個Link binary with libraries,點擊加號搜尋libxml2並將這個庫添加到工程,



接下來再進入Build Settings,在搜尋方塊中搜尋Head Search Path,然後雙擊並點擊+按鈕添加/usr/include/libxml2,

接下來再搜尋方塊中搜尋Other linker flags,同樣的方式添加-lxml2,

到這裡,添加和配置的工作就完成了(是有點麻煩),接下來就看如何使用了:

首先在工程中建立一個xml檔案,作為我們要解析的對象,建立方法是在工程中建立一個Empty的檔案,命名為users.xml,然後新增內容:

<?xml version="1.0" encoding="utf-8"?><Users>    <User id="001"]]>        <name>Ryan</name>        <age>24</age>    </User>    <User id="002"]]>        <name>Tang</name>        <age>23</age>    </User></Users>

接下來就可以開始解析了,在需要解析的檔案中引入標頭檔:#import"GDataXMLNode.h"

我是建立的一個Empty工程,所以直接在AppDelegate.m中使用,代碼如下:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{    self.window = [[[UIWindowalloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];    // Override point for customization after application launch.    self.window.backgroundColor = [UIColorwhiteColor];    [self.windowmakeKeyAndVisible];        //擷取工程目錄的xml檔案    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"users" ofType:@"xml"];    NSData *xmlData = [[NSData alloc] initWithContentsOfFile:filePath];        //使用NSData對象初始化    GDataXMLDocument *doc = [[GDataXMLDocument alloc] initWithData:xmlData  options:0error:nil];        //擷取根節點(Users)    GDataXMLElement *rootElement = [doc rootElement];        //擷取根節點下的節點(User)    NSArray *users = [rootElement elementsForName:@"User"];        for (GDataXMLElement *user in users) {        //User節點的id屬性        NSString *userId = [[user attributeForName:@"id"] stringValue];        NSLog(@"User id is:%@",userId);                //擷取name節點的值        GDataXMLElement *nameElement = [[user elementsForName:@"name"] objectAtIndex:0];        NSString *name = [nameElement stringValue];        NSLog(@"User name is:%@",name);                //擷取age節點的值        GDataXMLElement *ageElement = [[user elementsForName:@"age"] objectAtIndex:0];        NSString *age = [ageElement stringValue];        NSLog(@"User age is:%@",age);        NSLog(@"-------------------");    }                returnYES;}

編譯執行在控制台輸出結果如下:


對Android&IOS感興趣的朋友可以加入我們的討論QQ群,在這裡,我們只討論乾貨:

iOS群:220223507

Android群:282552849


歡迎關注我的新浪微博和我交流:@唐韌_Ryan

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.