JAVA如何转换树结构数据代码实例

网友投稿 305 2022-12-11


JAVA如何转换树结构数据代码实例

在实战开发中经常有需要处理树形菜单、树形目录等等等业务需求。而对于这种产品,在设计数据库时也建议使用id<----->parentId的结构来做。但是最终前端显示多用hightChart或者Echart插件来实现。所以在给前端数据时,最好的做法就是把数据库结构话的数据处理成treejson格式。

第一步:引入fastjson

com.alibaba

fastjson

${fastjson.version}

第二步:用到了工具内的JSONPath

JSONPath使用教程

/**

* 树转换

*

* @param obj 需要转换的对象

* @param parentCodeFieldName 父标识字段名

* @param parentCode 父标识值

* @param currentCodeFieldName 当前标识字段名

* @param childrenFiledName 子树的字段名

* @param c 需要转换的Class类型

* @param 泛型

* @return 返回List

*/

public static List tree(Object obj, String parentCodeFieldName, String parentCode, String currentCodeFieldNamehttp://, String childrenFiledName, Class c) {

long t1 = System.currentTimeMillis();

String jsonStr = JSON.toJSONString(obj);

log.debug("树转换开始 >>>>>>>>>>>>>>>> {}", JSON.toJSONString(obj));

//获取第一层级的数据

JSONArray jsonArray = (JSONArray) JSONPath.read(jsonStr, "$[" + parentCodeFieldName + "=" + parentCode + "]");

if (CollectionUtils.isEmpty(jsonArray)) {

//为空的话直接返回空集合

return Lists.newArrayList();

}

for (int i = 0; i < jsonArray.size(); i++) {

JSONObject jsonObject = jsonArray.getJSONObject(i);

String code = jsonObject.getString(currentCodeFieldName);

treeChildren(jsonStr, jsonObject, parentCodeFieldName, code, currentCodeFieldName, childrenFiledName);

}

List list = JSONArray.parseArray(jsonArray.toString(), c);

log.debug("树转换结束, 转换时间: {} ms . >>>>>>>>>>>>>>>> {}", (System.currentTimeMillis() - t1), JSON.toJSONString(list));

return list;

}

private static void treeChildren(String jsonStr, JSONObject currentJsonObj, String parentCodeFieldName, String parentCode, String currentCodeFieldName, String childrenFiledName) {

JSONArray jsonArray = (JSONArray) JSONPath.read(jsonStr, "$[" + parentCodeFieldName + "=" + parentCode + "]");

if (CollectionUtils.isEmpty(jsonArray)) {

return;

}

currentJsonObj.put(childrenFiledName, jsonArray);

for (int i = 0; i < jsonArray.size(); i++) {

JSONObject jsonObject = jsonArray.getJSONObject(i);

String code = jsonObject.getString(currentCodeFieldName);

treeChildren(jsonStr, jsonObject, parentCodeFieldName, code, currentCodeFieldName, childrenFiledName);

}

}

ZhYkspbSUw


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:全面了解Java反射机制
下一篇:SpringBoot Shiro配置自定义密码加密器代码实例
相关文章

 发表评论

暂时没有评论,来抢沙发吧~