欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

IOS学习:常用第三方库(GDataXMLNode:xml解析库)

程序员文章站 2023-01-24 20:31:50
一、gdataxmlnode说明 gdataxmlnode是google提供的用于xml数据处理的类集。该类集对libxml2--dom处理方式进行了封装,能对较小或中等的x...

一、gdataxmlnode说明


gdataxmlnode是google提供的用于xml数据处理的类集。该类集对libxml2--dom处理方式进行了封装,能对较小或中等的xml文档进行读写操作且支持xpath语法。


使用方法:
     1、获取gdataxmlnode.h/m文件,将gdataxmlnode.h/m文件添加到工程中
     2、向工程中增加“libxml2.dylib”库
     3、在工程的“build settings”页中找到“header search path”项,添加/usr/include/libxml2"到路径中
     4、添加“gdataxmlnode.h”文件到头文件中,如工程能编译通过,则说明gdataxmlnode添加成功


二、gdataxmlnode示例


示例:
[html]
<root> 
     <name value="wusj"/> 
     <age>24</age> 
</root> 

<root>
     <name value="wusj"/>
     <age>24</age>
</root>

对此xml文件进行解析


    [cpp] nsstring *xmlpath = [[nsbundlemainbundle] pathforresource:@"test"oftype:@"xml"]; 
    nsstring *xmlstring = [nsstringstringwithcontentsoffile:xmlpath encoding:nsutf8stringencodingerror:nil]; 
    gdataxmldocument *xmldoc = [[gdataxmldocumentalloc] initwithxmlstring:xmlstring options:0error:nil]; 
    gdataxmlelement *xmlele = [xmldoc rootelement]; 
    nsarray *array = [xmlele children]; 
    nslog(@"count : %d", [array count]); 
    
    for (int i = 0; i < [array count]; i++) { 
        gdataxmlelement *ele = [array objectatindex:i]; 
         
        // 根据标签名判断  
        if ([[ele name] isequaltostring:@"name"]) { 
            // 读标签里面的属性  
            nslog(@"name --> %@", [[ele attributeforname:@"value"] stringvalue]); 
        } else { 
            // 直接读标签间的string  
            nslog(@"age --> %@", [ele stringvalue]); 
        } 
        
    } 

nsstring *xmlpath = [[nsbundlemainbundle] pathforresource:@"test"oftype:@"xml"];
    nsstring *xmlstring = [nsstringstringwithcontentsoffile:xmlpath encoding:nsutf8stringencodingerror:nil];
    gdataxmldocument *xmldoc = [[gdataxmldocumentalloc] initwithxmlstring:xmlstring options:0error:nil];
    gdataxmlelement *xmlele = [xmldoc rootelement];
    nsarray *array = [xmlele children];
    nslog(@"count : %d", [array count]);
  
    for (int i = 0; i < [array count]; i++) {
        gdataxmlelement *ele = [array objectatindex:i];
       
        // 根据标签名判断
        if ([[ele name] isequaltostring:@"name"]) {
            // 读标签里面的属性
            nslog(@"name --> %@", [[ele attributeforname:@"value"] stringvalue]);
        } else {
            // 直接读标签间的string
            nslog(@"age --> %@", [ele stringvalue]);
        }
      
    }

 

    运行结果:
       

   

 

三、gdataxmlnode方法小结


     最终的数据读出都是在gdataxmlelement对象中读出的,以下方法均为gdataxmlelement类的方法
     1、name方法,取标签名 e.g name标签的名称“name”
     2、attributeforname: 取属性结点 再调stringvalue即可取到属性值 e.g name标签中的value属性
     3、stringvalue: 取标签间的字符串值  e.g: age间的24