gpt4 book ai didi

iphone - 如何从 NSData 获取详细信息

转载 作者:行者123 更新时间:2023-11-28 20:19:55 26 4
gpt4 key购买 nike

我想从下面的 URL 中获取指定的数据 html_instructions。我可以从这个 URL 中获取所有数据.

但我只需要特定的html_instructions。如何拆分数据?

我使用以下代码将 URL 转换为 NSData:

 NSString *url = [NSString      stringWithFormat:@"http://maps.googleapis.com/maps/api/directions/json?origin=Chennai&destination=Madurai&sensor=false"];
NSURL *googleRequestURL=[NSURL URLWithString:url];
dispatch_async(kBgQueue, ^{
NSData* data = [NSData dataWithContentsOfURL: googleRequestURL];
});

最佳答案

将其用作:

    NSData* data = [NSData dataWithContentsOfURL:googleRequestURL];
if (data == nil) {
return;
}
NSError* error;
NSMutableDictionary* json = [NSJSONSerialization
JSONObjectWithData:data

options:kNilOptions
error:&error];

NSLog(@"Json : %@",json);

希望对你有帮助。

关于iphone - 如何从 NSData 获取详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16415296/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com