Commit 4769bc9d by wang_jiaxing

修改全国案件查询条件的结果处理

parent 8d7b7712
......@@ -52,7 +52,7 @@ public class QgAsjQueryService {
if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
String jsonResult = EntityUtils.toString(response.getEntity(), "utf-8");
System.out.println("请求部级接口返回数据======" + jsonResult);
if (null != jsonResult) {
if (null != jsonResult && !"".equals(jsonResult) && !"null".equals(jsonResult)) {
JSONObject jsonObject = JSONObject.parseObject(jsonResult);
if (jsonObject.containsKey("dataResult")) {
tbStAsjQGList = (List) jsonObject.get("dataResult");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment