JsonPath:按数组中的值过滤

时间:2017-11-30 14:45:24

标签: java json jsonpath

我尝试使用Jsonpath在我的Json中按值过滤数组。我想在下面的JSON中获取该国家的long_name。为此,我按类型[0] ==" country"过滤adress_components。但它似乎没有用。

我尝试过的JsonPath:

$.results[0].address_components[?(@['types'][0]=="country")].long_name

我想要的结果是:"加拿大"。

JSON:

{
       "results" : [
          {
             "address_components" : [
                {
                   "long_name" : "5510-5520",
                   "short_name" : "5510-5520",
                   "types" : [ "street_number" ]
                },
                {
                   "long_name" : "Yonge Street",
                   "short_name" : "Yonge St",
                   "types" : [ "route" ]
                },
                {
                   "long_name" : "Willowdale",
                   "short_name" : "Willowdale",
                   "types" : [ "neighborhood", "political" ]
                },
                {
                   "long_name" : "North York",
                   "short_name" : "North York",
                   "types" : [ "political", "sublocality", "sublocality_level_1" ]
                },
                {
                   "long_name" : "Toronto",
                   "short_name" : "Toronto",
                   "types" : [ "locality", "political" ]
                },
                {
                   "long_name" : "Toronto Division",
                   "short_name" : "Toronto Division",
                   "types" : [ "administrative_area_level_2", "political" ]
                },
                {
                   "long_name" : "Ontario",
                   "short_name" : "ON",
                   "types" : [ "administrative_area_level_1", "political" ]
                },
                {
                   "long_name" : "Canada",
                   "short_name" : "CA",
                   "types" : [ "country", "political" ]
                },
                {
                   "long_name" : "M2N 5S3",
                   "short_name" : "M2N 5S3",
                   "types" : [ "postal_code" ]
                }
             ]
            }
       ],
       "status" : "OK"
}

感谢您的帮助。

2 个答案:

答案 0 :(得分:5)

以下JSONPath将起作用:

$..address_components[?(@.types[0] == 'country')].long_name

打破它:

  • $..address_components:专注于address_components数组
  • [?(@.types[0] == 'country')]:找到address_components子文档,其类型属性名为" type"包含第一个值为" country"
  • 的数组
  • .long_name:返回此子文档的long_name属性。

使用Jayway JsonPath Evaluator和Java验证:

JSONArray country = JsonPath.parse(json)
    .read("$..address_components[?(@.types[0] == 'country')].long_name");

// prints Canada
System.out.println(country.get(0));

答案 1 :(得分:2)

如果 country 不是types数组的第一个,则glytching提供的工作解决方案将不再可用。

您应该使用:

$..address_components[?(@.types.indexOf('country') != -1)]

它将按包含国家/地区的数组进行过滤,而不是以国家/地区开头的数组