我在所有国家/地区都拥有这个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");
感谢您的帮助。