List<Record> r1=Db.paginate(1, 3, "select *", "from blog where id>=?", 1).getList();
List<Record> r2=Db.paginate(2, 3, "select *", "from blog where id>=?", 1).getList();
String str1=r1.toString();
String str2=r2.toString();
JSONArray array1=JSONObject.parseArray(str1);
JSONArray array2=JSONObject.parseArray(str2);
转换成JSONArray出错。
项目:JFinal