查询分页接口全部数据

  private void request() {
        int pageNum = 1;
        int pageSize = 100;
        Object o = resourceFile("3307", null, null, null, null, pageNum, pageSize);
        Map map =
            JSONObject.parseObject(JSON.toJSONString(o), new TypeReference>() {
            });
        String total = map.get("total");
        String rows = map.get("rows");
        int totalNum = Integer.valueOf(total);
        List policyVos = JSONArray.parseArray(rows, PolicyVo.class);
        save(policyVos);
        if (totalNum > pageSize) {
            int num =  totalNum / pageSize + 1;
            for (int i = 2; i <= num; i++) {
                Object object = resourceFile("3307", null, null, null, null, i, pageSize);
                Map respMap =
                    JSONObject.parseObject(JSON.toJSONString(object), new TypeReference>() {
                    });
                String str = respMap.get("rows");
                List policyVo = JSONArray.parseArray(str, PolicyVo.class);
                save(policyVo);
            }
        }


    }

你可能感兴趣的:(java)