JsonNode resBodyRelate = result.getBody();
//{"language":null,"type":null,"readCount":3,"viewStatus":"V","secondType":null}
System.out.println(resBodyRelate.getArray().get(0));
com.alibaba.fastjson.JSONObject itemObjectRelate = JSON.parseObject(resBodyRelate.getArray().get(0).toString());
String resultStr = itemObjectRelate.get("viewStatus").toString();
System.out.println(resultStr);
pom依赖
com.alibaba fastjson 1.2.73



