解析Json时出错

时间:2011-05-11 11:33:55

标签: iphone json

在解析json服务时,它第一次正常工作,但在第二次它给了我下面给出的错误

-JSONValue failed. Error trace is: (
"Error Domain=org.brautaset.JSON.ErrorDomain Code=11 \"Unexpected end of string\" UserInfo=0x5f57450 {NSLocalizedDescription=Unexpected end of string}"  

提前致谢

代码开始解析:

NSString *urlString = [NSString stringWithFormat:@"http://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/wa/wsSearch?term=%@",tt.text];

解析代码::

    - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    [responseData setLength:0];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    [responseData appendData:data];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
    UIAlertView *alert =[[UIAlertView alloc]initWithTitle:@"error" message:@"Problem with parsing data" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
    [alert show];
    [alert release];
    [UIApplication sharedApplication].networkActivityIndicatorVisible=NO;
    self.responseData = nil;
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
    self.responseData = nil;
    NSLog(@"%@",[responseString JSONValue]);
    NSArray* latestLoans = [(NSDictionary*)[responseString JSONValue] objectForKey:@"results"];
    [responseString release];
    NSLog(@"count === %d",[latestLoans count]);
        for (int i = 0; i < [latestLoans count]; i++)
        {
            NSLog(@" inside for loop %@",[latestLoans objectAtIndex:i]);
            NSDictionary* loan = [latestLoans objectAtIndex:i];
            NSLog(@" trackanme=== %@",[loan objectForKey:@"collectionName"]);
                NSLog(@" artworkurl=== %@",[loan objectForKey:@"artworkUrl60"]);
            [titlearray addObject:[loan objectForKey:@"collectionName"]];
            [imagelink addObject:[loan objectForKey:@"artworkUrl60"]];

        }
    //get latest loan

    NSLog(@"titlearray count == %d",[titlearray count]);
    NSLog(@"imagelink count ===%d",[imagelink count]);
    //fetch the data
    //NSString* fundedAmount = [loan objectForKey:@"Kind"];
    //NSNumber* loanAmount = [loan objectForKey:@"loan_amount"];
    //float outstandingAmount = [loanAmount floatValue] - [fundedAmount floatValue];

        //NSString* country = [(NSDictionary*)[loan objectForKey:@"location"] objectForKey:@"country"];

    //set the text to the label
    //label.text = [NSString stringWithFormat:@"Latest loan: %@ from %@ needs another $%.2f, please help",
    //            name,country,outstandingAmount
    //            ];    
    [UIApplication sharedApplication].networkActivityIndicatorVisible=NO;
    [tbl reloadData];
}


    NSLog(@"url ===%@",urlString);
    // Create NSURL string from formatted string, by calling the Flickr API
    NSURL *url = [NSURL URLWithString:urlString];


    // Setup and start async download
    NSURLRequest *request = [[NSURLRequest alloc] initWithURL: url];
    NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
    [connection release];
    [request release];

这是我的请求代码,每次按下按钮都会调用此代码:

-(IBAction)searchitem:(id)sender
{[UIApplication sharedApplication].networkActivityIndicatorVisible=YES;


[tt resignFirstResponder];

NSString *urlString = [NSString stringWithFormat:@"http://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/wa/wsSearch?term=%@",tt.text];

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:urlString]];
[[NSURLConnection alloc] initWithRequest:request delegate:self];


}

1 个答案:

答案 0 :(得分:0)

问题是,我没有很好地链接我的json框架,我尝试在github上提供新框架,它工作正常。

感谢所有贡献他们想法的人,并引导我找到解决问题的正确方向。

非常感谢.........