java后台转json、转对象、转list集合
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
前台数据传递到后台转json
1、普通格式转换成对象
String data=request.getParameter("data");
//单数据的时候转换方式
JSONObject json= JSONObject.fromObject(data);
Tree tree = (Tree)JSONObject.toBean(json, Tree.class);
2、Tree格式(多数据)转成对象
HashMap mapClass=new HashMap();
mapClass.put("children", Tree.class); //children属性是一个list集合
Tree tree = (Tree)JSONObject.toBean(json, Tree.class,mapClass); //Tree是对应的实体对象
3、后台将前台传来的一系列的数据转换为list集合
String data = eac.getParamValue("data");
String str = data.replaceAll("\"", "").replaceAll("\\\\", "\"");
//多数据转json的格式
JSONArray json = JSONArray.fromObject(str);
//将json转为list
List<SkdDcdaContractProblemPo> list = (List<SkdDcdaContractProblemPo>) JSONArray.toCollection(json,SkdDcdaContractProblemPo.class);
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)