简体   繁体   English

使用touch xml解析xml

[英]parse xml using touch xml

i am new to xml and want to parse it by using touch xml. 我是xml的新手,想通过使用touch xml对其进行解析。

<?xml version="1.0" standalone="yes"?>
<DataSetMenu xmlns="http://tempuri.org/DataSetMenu.xsd">
  <MenuCategories>
    <MenuCatID>10108</MenuCatID>
    <MenuCatName>SPEICALS</MenuCatName>
    <BusinessEntityID>20137</BusinessEntityID>
    <DisplayIndex>0</DisplayIndex>
    <MenuCatDesc />
    <Visible>true</Visible>
    <ImagePath />
  </MenuCategories>
  <MenuCategories>
    <MenuCatID>10109</MenuCatID>
    <MenuCatName>GENERAL MENU</MenuCatName>
    <BusinessEntityID>20137</BusinessEntityID>
    <DisplayIndex>1</DisplayIndex>
    <MenuCatDesc />
    <Visible>true</Visible>
    <ImagePath />
  </MenuCategories>
  <MenuGroups>

    <MenuGroupID>110079</MenuGroupID>
    <MenuCatID>10108</MenuCatID>
    <MenuGroupName>PIZZA&amp;WINGS&amp;DRINK DEAL</MenuGroupName>
    <MenuGroupDesc />
    <Visible>true</Visible>
    <DisplayIndex>0</DisplayIndex>
    <MenuTypeID>1</MenuTypeID>
    <ImagePath />
    <ServiceTimeEnforced>false</ServiceTimeEnforced>
    <ServiceStartTime>2013-04-15T11:00:00-05:00</ServiceStartTime>
    <ServiceEndTime>2013-04-15T15:00:00-05:00</ServiceEndTime>
    <Monday>true</Monday>
    <Tuesday>true</Tuesday>
    <Wednesday>true</Wednesday>
    <Thursday>true</Thursday>
    <Friday>true</Friday>
    <Saturday>true</Saturday>
    <Sunday>true</Sunday>
  </MenuGroups>
  <MenuGroups>
    <MenuGroupID>110081</MenuGroupID>
    <MenuCatID>10109</MenuCatID>
    <MenuGroupName>BUILD YOUR OWN PIZZA</MenuGroupName>
    <MenuGroupDesc />
    <Visible>true</Visible>
    <DisplayIndex>0</DisplayIndex>
    <MenuTypeID>1</MenuTypeID>
    <ImagePath />
    <ServiceTimeEnforced>false</ServiceTimeEnforced>
    <ServiceStartTime>1900-01-01T11:00:00-06:00</ServiceStartTime>
    <ServiceEndTime>1900-01-01T15:00:00-06:00</ServiceEndTime>
    <Monday>true</Monday>
    <Tuesday>true</Tuesday>
    <Wednesday>true</Wednesday>
    <Thursday>true</Thursday>
    <Friday>true</Friday>
    <Saturday>true</Saturday>
    <Sunday>true</Sunday>
  </MenuGroups>

i am trying to use this code 我正在尝试使用此代码

//  we will put parsed data in an a array
    NSMutableArray *res = [[NSMutableArray alloc] init];

    //  using local resource file
    NSString *XMLPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"20137_ZZ Pizza & Kabob_2013_04_19 01_20_22_Local.xml"];
    NSData *XMLData   = [NSData dataWithContentsOfFile:XMLPath];
    CXMLDocument *doc = [[[CXMLDocument alloc] initWithData:XMLData options:0 error:nil] autorelease];

    NSArray *nodes = NULL;
    //  searching for piglet nodes
    nodes = [doc nodesForXPath:@"//MenuCatID" error:nil];

    for (CXMLElement *node in nodes) {
        NSMutableDictionary *item = [[NSMutableDictionary alloc] init];
        int counter;
        for(counter = 0; counter < [node childCount]; counter++) {
            //  common procedure: dictionary with keys/values from XML node
            [item setObject:[[node childAtIndex:counter] stringValue] forKey:[[node childAtIndex:counter] name]];
        }

        //  and here it is - attributeForName! Simple as that.
        [item setObject:[[node attributeForName:@"id"] stringValue] forKey:@"id"];  // <------ this magical arrow is pointing to the area of interest

        [res addObject:item];
        [item release];
    }

    //  and we print our results
    NSLog(@"%@", res);
    [res release];

In my opinion, KissXML is better for you https://github.com/robbiehanson/KissXML 我认为KissXML更适合您https://github.com/robbiehanson/KissXML

Here is example how to parse your XML file 这是如何解析XML文件的示例

// your file name
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"filename" ofType:@"xml"];

// load file content into string
NSString *xmlContent =  [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];

// create XMLDocument object
DDXMLDocument *xml = [[DDXMLDocument alloc] initWithXMLString:xmlContent options:0 error:nil];

// Get root element - DataSetMenu for your XMLfile
DDXMLElement *root = [xml rootElement];

// go through all elements in root element (DataSetMenu element)
for (DDXMLElement *DataSetMenuElement in [root children]) { 
    // if the element name's is MenuCategories then do something
    if ([[DataSetMenuElement name] isEqualToString:@"MenuCategories"]) {
        // get MenuCatID
        NSInteger MenuCatID = [[[DataSetmenuElement elementForName:@"MenuCatID"] objectAtIndex:0] integerValue];
    }
}

Method elementForName will get you NSArray of all elements with specific name (if you want first then objectAtIndex:0) and thereafter you have to specific type (integerValue, stringValue, doubleValue) 方法elementForName将为您提供具有特定名称的所有元素的NSArray(如果要先获取,然后是objectAtIndex:0),然后必须具有特定的类型(integerValue,stringValue,doubleValue)

I hope this helps. 我希望这有帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM