我在 iOS 应用程序中解析 JSON url 时遇到问题
NSString *strUrl = [NSString stringWithFormat"http://www.google.com/finance/info?q=NSE:MARUTI"];
NSURL *url = [NSURL URLWithString:strUrl];
NSData *stockData = [NSData dataWithContentsOfURL:url];
NSError *error;
NSMutableArray *arrStock = (NSMutableArray*)[NSJSONSerialization JSONObjectWithData:stockData options:kNilOptions error:&error];
链接返回一个数组,但我得到一个空数组。谁能帮忙
返回的字符串不是有效的 JSON,因为它似乎以“//”开头。
有两件事可以帮助调试:
nil
时检查 (NSLog()
) 错误返回。NSLog(@"error: %@", error.localizedDescription);
返回:
error: The data couldn’t be read because it isn’t in the correct format.
NSLog
返回的数据。
NSLog(@"data : %@", stockData);
data : <0a2f2f20 5b0a7b0a ...
Notice the leading "0a2f2f20".
或
NSLog(@"data as string: %@", [[NSString alloc] initWithData:stockData encoding:NSUTF8StringEncoding]);
data as string:
// [
{
"id": "7152373"
,"t" : "MARUTI"
请注意前面的“//”前面有不明显的换行符,这就是我更喜欢十六进制表示的原因。
关于ios - JSON解析iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32680553/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |