objective-c - iOS 解析Webservice数据

标签 objective-c ios xml web-services nsxmlparser

大家下午好,

我已经从网络服务下载了数据,我希望解析该数据以便我可以使用它,但我在解析返回值时遇到问题,下面是获取代码以及中间的任何其他帮助赞赏

 -(IBAction)runNewImport:(id)sender{


recordResults = FALSE;

soapMessage = [NSString stringWithFormat:

               @"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"

               "<s:Envelope \n"

               "xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" \n"
               "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" \n" 
               "xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" \n"
               "s:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" \n"
               "xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\"> \n"       


               "<s:Body> \n"

               "<[FUNCTION] xmlns=\"http://tempuri.org/\"/>\n"

               "</s:Body> \n"
               "</s:Envelope>"];


[[NSURLCache sharedURLCache] removeAllCachedResponses];
NSURL *url = [NSURL URLWithString:@"http://[PATH]"];      
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];             
NSString *msgLength = [NSString stringWithFormat:@"%d", [soapMessage length]];          
[theRequest addValue: @"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];       
[theRequest addValue: @"[FUNCTION]" forHTTPHeaderField:@"SOAPAction"];
[theRequest addValue: msgLength forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPMethod:@"POST"];     
[theRequest setHTTPBody: [soapMessage dataUsingEncoding:NSUTF8StringEncoding]];
NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

if(theConnection) {
    webData = [NSMutableData data];
    NSLog(@"%@",webData);
}
else {
    NSLog(@"theConnection is NULL");
}       



}

-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSLog(@"DONE. Received Bytes: %d", [webData length]);
NSString *theXML = [[NSString alloc] initWithBytes: [webData mutableBytes] length:[webData length] encoding:NSUTF8StringEncoding];
NSLog(@"THIS IS THE DATA : %@",theXML);


xmlParser = [[NSXMLParser alloc] initWithData: webData];
[xmlParser setDelegate:self];
[xmlParser setShouldResolveExternalEntities: YES];
[xmlParser parse];


}

-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)
 elementName namespaceURI:(NSString *) 
 namespaceURI qualifiedName:(NSString *)qName
  attributes: (NSDictionary *)attributeDict
{
if( [elementName isEqualToString:@"CODE"])
{
    soapResults = [[NSMutableString alloc] init];
    NSLog(@"%@",soapResults);
    recordResults = TRUE;
}
}

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

{
if( [elementName isEqualToString:@"CODE"])
{
    recordResults = FALSE;
    soapResults = nil;
    }
}

感谢您再次查看,欢迎提供所有帮助

最佳答案

您似乎误解了 NSXMLParser 的工作方式。我强烈建议您仔细阅读 Apple 的这份文档 XML parsing

-(void)parser:didStartElement:namespaceURI:qualifiedName:attributes:

当解析器找到像 之类的开始 XML 标记时,会调用此方法,因此它还没有任何数据。在这里,您只需为您想要保存的内容分配内存

- (void)parser:foundCharacters:

当在 parser:didStartElement:namespaceURI:qualifiedName:attributes: 中找到的标记内有数据时调用,这是您首先存储该数据的位置,以便稍后将其保存在您想要在下一个方法中使用的对象:

-(void)parser:didEndElement:namespaceURI:qualifiedName

当解析器遇到结束标记 () 时被调用。现在您已将数据保存在 parser:foundCharacters: 的变量中,是时候将其保存在对象中了。

编辑:好吧,让我们尝试通过在这些方法中添加代码示例来分解它:

假设您有一个如下所示的 XML;

<person>
    <lastName>Doe</lastName>
    <firstName>John</firstName>
    <address>
        <street>100 Main Street</street>
        <city>Somewhere</city>
    </address>
</person>

当然,您希望有一个具有 lastNamefirstNameaddressDictionary 属性的 Person 类包含街道城市。要保留所有 Person,您需要 personArray

现在我们有了结构,下面是解析部分。 请注意,为了更好地理解,我将单独编写每个 If block 。

.h 文件

@property (nonatomic, retain) Person *currentPerson;
@property (nonatomic, retain) NSMutableString *currentElement;
@property (nonatomic, retain) NSMutableDictionary *addressDic; //to be saved to person.addressDictionary when finished
@property (nonatomic, retain) NSMutableArray *personArray;

.m 文件

- (void)parserDidStartDocument:(NSXMLParser *)parser 
{
    personArray = [[NSMutableArray alloc] init];
}

- (void) parser: (NSXMLParser *) parser didStartElement: (NSString *) elementName
 namespaceURI: (NSString *) namespaceURI qualifiedName: (NSString *) qName attributes: (NSDictionary *) attributeDict
{
    if ([elementName isEqualToString:@"Person"])
    {
    currentPerson = [[Person alloc] init]; //
    return;
    }
    if ([elementName isEqualToString:@"lastName"])
    {
        currentElement = [[NSMutableString alloc] init];
        return;
    }
    if ([elementName isEqualToString:@"firstName"])
    {
        currentElement = [[NSMutableString alloc] init];
        return;
    }
    if ([elementName isEqualToString:@"address"])
    {
        adressDic = [[NSMutableDictionary alloc] init];
        return;
    }
    if ([elementName isEqualToString:@"street"])
    {
        currentElement = [[NSMutableString alloc] init];
        return;
    }
    if ([elementName isEqualToString:@"city"])
    {
        currentElement = [[NSMutableString alloc] init];
        return;
    }
}

- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
    [currentElement appendString:string];
}

- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{
    if ([elementName isEqualToString:@"Person"])
    {
    [personArray addObject:currentPerson];
    [currentPerson release];
    return;
    }
    if ([elementName isEqualToString:@"lastName"])
    {
        currentPerson.lastName = currentElement;
        [currentElement release]; currentElement = nil;
        return;
    }
    if ([elementName isEqualToString:@"firstName"])
    {
        currentPerson.firstName = currentElement;
        [currentElement release]; currentElement = nil;
        return;
    }
    if ([elementName isEqualToString:@"address"])
    {
        currentPerson.addressDictionary = addresDic;
        [addressDic release];
        return;
    }
    if ([elementName isEqualToString:@"street"])
    {
        [addressDic setObject:currentElement forKey:@"street"];
        [currentElement release]; currentElement = nil;
        return;
    }
    if ([elementName isEqualToString:@"city"])
    {
        [addressDic setObject:currentElement forKey:@"city"];
        [currentElement release]; currentElement = nil;
        return;
    }
}

当这一切完成后,parserDidEndDocument: 被调用。现在您的数组中已包含所有 Person,可以对它们执行任何您喜欢的操作

- (void)parserDidEndDocument:(NSXMLParser *)parser
{
     for (Person *person in personArray)
     {
          NSLog(@"Person name:%@", person.firstName);
          NSLog(@"Person lastname:%@", person.lastName);
     }
}

关于objective-c - iOS 解析Webservice数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11139551/

相关文章:

iphone - AFNetworking:返回 200 且无内容时运行失败 block

objective-c - 从 iOS 应用程序内控制非 iPod 音乐播放器(例如 Spotify)

PHP DOMDocument - 为什么破折号 "–"转换为 –

iphone - 在 iOS 7 中移动状态栏

objective-c - 对 c/objective-c 中的 float 进行舍入。最后一位数字为 5 时出错

ios - viewDidLoad : Checking if from a segue?

iphone - iOS JSON解析器:如果两个键具有相同的名称会怎样?

python - 使用 xml.etree.ElementTree 解析 XML 文件时出现问题

java - 用Java读取XML文件

objective-c - 当 self.edgesForExtendedLayout = UIRectEdgeNone 时,导航栏不再半透明