JSONObject对象
json操作
JSONObject body = response.getBody();
JSONArray array = body.getJSONArray("result");
result = JSON.parseObject(array.toString(), new TypeReference<List<Map<String,String>>>(){});
json操作
JSONObject body = response.getBody();
JSONArray array = body.getJSONArray("result");
result = JSON.parseObject(array.toString(), new TypeReference<List<Map<String,String>>>(){});