保证使用groovy或JsonPath解析Json数组

时间:2018-09-26 20:00:19

标签: groovy rest-assured rest-assured-jsonpath

我在所有国家/地区都拥有这个Json

  

[[12,“美国”],[13,“加拿大”],[14,“英国”],[15,“ country1”]]

我只需要分析具有“ USA”的项目。如果有什么可以帮助我的,那就太好了。

Response getCountryInfoResponse = get(Constants.CountriesMap);
String CountryInfoRespString= getCountryInfoResponse.asString();
JsonPath CountryInfoJsonResponse = new JsonPath(CountryInfoRespString);
String CountryInfo = CountryInfoJsonResponse.get("USA");

感谢您的帮助。

0 个答案:

没有答案