使用浏览器打开以下链接时:
https://maps.google.co.kr/?q=seoul&output=json
它将开始下载一个 json 文件。
如何在 iOS 中获取此文件?
在 android 中,它似乎使用 inputStreamReader 来获取内容。
请给我一些建议或示例代码。
谢谢你的帮助~~
使用浏览器打开以下链接时:
https://maps.google.co.kr/?q=seoul&output=json
它将开始下载一个 json 文件。
如何在 iOS 中获取此文件?
在 android 中,它似乎使用 inputStreamReader 来获取内容。
请给我一些建议或示例代码。
谢谢你的帮助~~
您可以下载它,例如我的课程https://github.com/sakrist/ASyncURLConnection
我解决了。
这是一个非常简单的方法...
NSString *urlString = [NSString stringWithFormat:@"http://maps.google.co.kr?q=%@&output=json",
[address stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSString *content = [NSString stringWithContentsOfURL:[NSURL URLWithString:urlString]
encoding:NSKoreanEncoding
error:&error];
它返回一个包含完整信息(地址、内容、纬度、经度等)的谷歌搜索结果。
但我不知道为什么人们不使用这种方式......
有知道的请告诉我~~谢谢~~