从API接口获取的json数据怎么存到对象的List集合中

日期:2021-08-26 03:26:44 人气:1

从API接口获取的json数据怎么存到对象的List集合中

1. 简单的手动放置 键值对 到JSONObject,然后在put到JSONArray对象里
List<Article> al = articleMng.find(f);
System.out.println(al.size());
HttpServletResponse hsr = ServletActionContext.getResponse();
if(null == al
    A+
热门评论