Commit 6cf518dd by 焦荣

修改参数格式

parent e3294eff
...@@ -126,11 +126,13 @@ public class RyfkController { ...@@ -126,11 +126,13 @@ public class RyfkController {
if(zbfzxyr.get("dataResult")!=null&&!zbfzxyr.get("dataResult").equals("")){ if(zbfzxyr.get("dataResult")!=null&&!zbfzxyr.get("dataResult").equals("")){
rowlist = (ArrayList) zbfzxyr.get("dataResult"); rowlist = (ArrayList) zbfzxyr.get("dataResult");
} }
System.out.println("rowlist=dataResult===" + rowlist);
System.out.println("rowlist=size===" + rowlist.size());
List ajxxlist = new ArrayList(); List ajxxlist = new ArrayList();
for (int i = 0; i < rowlist.size(); i++) { //查询人员对应的案件 存在一人多案 for (int i = 0; i < rowlist.size(); i++) { //查询人员对应的案件 存在一人多案
Map maps = (Map) JSON.parse(rowlist.get(i).toString()); String dataResult = rowlist.get(i).toString();
System.out.println("rowlist=i===" + dataResult);
Map maps = (Map) JSON.parse(dataResult.replace("=",":"));
String asjbh = maps.get("ASJBH").toString(); String asjbh = maps.get("ASJBH").toString();
System.out.println("asjbh= 根据人员查询案件编号==" + asjbh); System.out.println("asjbh= 根据人员查询案件编号==" + asjbh);
//获取案件信息 //获取案件信息
......
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