在Google JSON之外获取邮政编码

时间:2013-02-27 10:20:49

标签: iphone ios objective-c json google-maps-api-3

我正在尝试从经度和纬度中检索邮政编码。因此我使用谷歌API。

这是我的要求。

http://maps.googleapis.com/maps/api/geocode/json?latlng=51.04166373133121,5.580196380615234&sensor=true

当您在浏览器中输入此内容时,您将看到整个JSON。这只是其中的一部分。

JSON文件

   {

      "results": [
                  {
                  "address_components": [
                                       {
                                           "long_name": "2",
                                           "short_name": "2",
                                           "types": [
                                                     "street_number"
                                                     ]
                                       },
                                       {
                                           "long_name": "Hermisweg",
                                           "short_name": "Hermisweg",
                                           "types": [
                                                     "route"
                                                     ]
                                       },
                                       {
                                           "long_name": "Opglabbeek",
                                           "short_name": "Opglabbeek",
                                           "types": [
                                                     "locality",
                                                     "political"
                                                     ]
                                       },
                                       {
                                           "long_name": "Limburg",
                                           "short_name": "LI",
                                           "types": [
                                                     "administrative_area_level_2",
                                                     "political"
                                                     ]
                                       },
                                       {
                                           "long_name": "Vlaams Gewest",
                                           "short_name": "Vlaams Gewest",
                                           "types": [
                                                     "administrative_area_level_1",
                                                     "political"
                                                     ]
                                       },
                                       {
                                           "long_name": "België",
                                           "short_name": "BE",
                                           "types": [
                                                     "country",
                                                     "political"
                                                     ]
                                       },
                                       {
                                           "long_name": "3660",
                                           "short_name": "3660",
                                           "types": [
                                                     "postal_code"
                                                     ]
                                       }
                              ]
                      }
               ]
       }

我现在的问题是如何从这个JSON获取邮政编码?在这个例子中,我想要3660作为输出。

有人有个主意吗?

3 个答案:

答案 0 :(得分:2)

connectionDidFinishLoading内尝试此操作。

-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
    NSString *thexml=[[[NSString alloc] initWithBytes:[webData mutableBytes] length:[webData length] encoding:NSUTF8StringEncoding] autorelease];

    NSError *jsonError = nil;
    id allValues = [NSJSONSerialization JSONObjectWithData:[thexml dataUsingEncoding:NSUTF8StringEncoding]
                                                   options:0
                                                     error:&jsonError];

    if(jsonError!=nil)
        NSLog(@"JsonError: %@",jsonError);


    NSArray *result = [(NSDictionary*)allValues objectForKey:@"results"];
    for(int i=0;i<[result count];i++)
    {
        NSDictionary *values = (NSDictionary*)[result objectAtIndex:i];                        

        NSArray *component = [(NSDictionary*)values objectForKey:@"address_components"];

        for(int j=0;j<[component count];j++)
        {
            NSDictionary *parts = (NSDictionary*)[component objectAtIndex:j];
            if([[parts objectForKey:@"types"] containsObject:@"postal_code"])
            {
                NSLog(@"Postal Code : %@ ",[parts objectForKey:@"long_name"]);
                break;
            }
        }
    }
}

答案 1 :(得分:1)

你想要“3600”,其键是“long_name”...所以你基本上想要“long_name”。

试试这个: -

假设您在resultDict中获得了所有结果。

NSString *long_name = [[[[[resultDict objectForKey:@"results"] objectAtIndex:0] objectForKey:@"address_components"] objectAtIndex:0] objectForKey:@"long_name"];

NSLog(@"long_name is %@",long_name);

注意: - 你必须用for循环的变量替换0(例如“i”),把你在结果字典中得到的数组中的元素数放在那里。

答案 2 :(得分:0)

将此JSON映射到NSDictionary类。从这里你可以访问address_components数组。

使用array objectAtIndex获取所需的值。

如果您需要全面的解决方案,请参阅github中提供的抽象KVC包装类

这些直接将JSON映射到模型类中。

映射后,您可以通过指定这些类的object.property来访问它们。