客户端需要将List<Object>转化为JsonArray和JsonObject的方法: 首先,List中的Object的属性需要是public: class Person { public String name; public String sex; public int age; } 下面假设有List<Person> personList = new ArrayList<Person>(); 中已经装载好了数据: JSONArray jsonArray = n…
聪明的人总是能想到别人会遇到的问题,提前给出解决方案. List propList = new ArrayList(); //装载数据的list JSONArray array= JSONArray.fromObject(JSON.toJSONString(propList));//list转换成JSONArray for(int i =0;i<array.size();i++){ Object listArray = new JSONTokener( array.get(i).toString…