自学内容网 自学内容网

JSONArray 与Object 之间的转换

PageResult<JSONArray> pageResult = new PageResult<>();

// 查出来的数据
JSONArray resultArray = new JSONArray();
ject data = new JSONObject();
     data.put("code", code);
resultArray.add(data);

// 将resultArray数据放入JSONArray,不是再包装成一个 List
List<Object> pageData = resultArray.subList(startIndex, endIndex);
            
JSONArray list = new JSONArray(pageData);

pageResult.setTotal((long) resultArray.size());
pageResult.setList(Collections.singletonList(list)); 




// 返回值类型 PageResult<JSONArray> 

JSONArray 实际上是封装了一个 List<Object>


原文地址:https://blog.csdn.net/2301_76162638/article/details/144081962

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!