1

使用浏览器打开以下链接时:

https://maps.google.co.kr/?q=seoul&output=json

它将开始下载一个 json 文件。

如何在 iOS 中获取此文件?

在 android 中,它似乎使用 inputStreamReader 来获取内容。

请给我一些建议或示例代码。

谢谢你的帮助~~

4

2 回答 2

1

您可以下载它,例如我的课程https://github.com/sakrist/ASyncURLConnection

于 2012-07-17T10:25:34.040 回答
0

我解决了。

这是一个非常简单的方法...

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];

它返回一个包含完整信息(地址、内容、纬度、经度等)的谷歌搜索结果。

但我不知道为什么人们不使用这种方式......

有知道的请告诉我~~谢谢~~

于 2012-07-18T06:39:49.413 回答