Проблема парсера nsxml - PullRequest
       11

Проблема парсера nsxml

2 голосов
/ 08 февраля 2012

У меня все в порядке с iPhone, и я делал это раньше, но пока не могу понять. Я использую XMLParser и получаю ответ, как показано ниже:

username =         {
        text = akhildas;
        type = string;
    };

Вместо этого я ожидаю

username = akhildas

То, что я уже сделал, это:

- (NSDictionary *)objectWithData:(NSData *)data
{
// Clear out any old data
[dictionaryStack release];
[textInProgress release];

dictionaryStack = [[NSMutableArray alloc] init];
textInProgress = [[NSMutableString alloc] init];

// Initialize the stack with a fresh dictionary
[dictionaryStack addObject:[NSMutableDictionary dictionary]];

// Parse the XML
NSXMLParser *parser = [[NSXMLParser alloc] initWithData:data];
parser.delegate = self;
BOOL success = [parser parse];

// Return the stack's root dictionary on success
if (success)
{
    NSDictionary *resultDict = [dictionaryStack objectAtIndex:0];
    return resultDict;
}

return nil;
}

#pragma mark -
#pragma mark NSXMLParserDelegate methods

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict
{


// Get the dictionary for the current level in the stack
NSMutableDictionary *parentDict = [dictionaryStack lastObject];

// Create the child dictionary for the new element, and initilaize it with the attributes
NSMutableDictionary *childDict = [NSMutableDictionary dictionary];
[childDict addEntriesFromDictionary:attributeDict];

// If there's already an item for this key, it means we need to create an array
id existingValue = [parentDict objectForKey:elementName];
if (existingValue)
{
    NSMutableArray *array = nil;
    if ([existingValue isKindOfClass:[NSMutableArray class]])
    {
        // The array exists, so use it
        array = (NSMutableArray *) existingValue;
    }
    else
    {
        // Create an array if it doesn't exist
        array = [NSMutableArray array];
        [array addObject:existingValue];

        // Replace the child dictionary with an array of children dictionaries
        [parentDict setObject:array forKey:elementName];
    }

    // Add the new child dictionary to the array
    [array addObject:childDict];

}
else
{
    // No existing value, so update the dictionary
    [parentDict setObject:childDict forKey:elementName];
}

// Update the stack
[dictionaryStack addObject:childDict];
}

- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{


// Update the parent dict with text info
NSMutableDictionary *dictInProgress = [dictionaryStack lastObject];

// Set the text property
if ([textInProgress length] > 0)
{
    [dictInProgress setObject:textInProgress forKey:kXMLReaderTextNodeKey];

    // Reset the text
    [textInProgress release];
    textInProgress = [[NSMutableString alloc] init];
}

// Pop the current dict
[dictionaryStack removeLastObject];
}
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
// Build the text value
[textInProgress appendString:string];
}

Кто-нибудь имел такую ​​же проблему и хорошо ее решил?

1 Ответ

1 голос
/ 18 сентября 2012

Я всегда стараюсь избегать NSXMLParser на основе обратного вызова (SAX) в пользу парсеров DOM, которые создают модель дерева DOM для вас. Я считаю, что с парсерами DOM гораздо проще справиться.

Мой любимый парсер GDataXML (разработанный Google). Это очень надежный и простой в использовании. Он состоит только из 2 файлов (и библиотеки libxml2), но очень мощный. Это избавляет вас от поиска методов ваших делегатов и интереса, правильно ли вы следовали своей структуре XML и правильно извлекли свой объект.

Отображение XML-документа в дерево объектов Objective-C может быть выполнено так коротко, как показано ниже:

NSData  *xmlData = [[NSMutableData  alloc] initWithContentsOfFile:filePath];
 NSError  *error;
 GDataXMLDocument *doc = [[GDataXMLDocument alloc] initWithData:xmlData 
        options:0 error:&error];
 if (doc != nil)NSLog(@"%@", doc.rootElement);

См. Это очень популярное руководство по синтаксическому анализу XML для iPhone, где объясняется GDataXML:

http://www.raywenderlich.com/725/how-to-read-and-write-xml-documents-with-gdataxml

Надеюсь, это упростит вашу жизнь с отслеживанием и анализом XML-данных.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...