部门结构树优化(json递归)

实体类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class SysDept
{
    private static final long serialVersionUID = 1L;
 
    /** 部门ID */
    private Long deptId;
 
    /** 父部门ID */
    private Long parentId;
 
        
    /** 子部门 */
    private List<SysDept> children = new ArrayList<SysDept>();
}

  普通list转换为treeList

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
public <T> List<T> listToTreeList ( JSONArray arr , String deptId , String parentId , String children,
           Class<T> clazz )
   {
       JSONArray r = new JSONArray();
       JSONObject hash = new JSONObject();
       //将数组转为Object的形式,key为数组中的deptId
       for ( int i = 0;i < arr.size();i++ ) {
           JSONObject json = (JSONObject)arr.get(i);
           hash.put(json.getString(deptId) , json);
       }
       //遍历结果集
       for ( int j = 0;j < arr.size();j++ ) {
           //单条记录
           JSONObject aVal = (JSONObject)arr.get(j);
           //在hash中取出key为单条记录中parentId的值
           JSONObject hashVP = (JSONObject)hash.get(aVal.get(parentId).toString());
           //如果记录的parentId存在,则说明它有父节点,将她添加到孩子节点的集合中
           if ( hashVP != null ) {
               //检查是否有children属性
               if ( hashVP.get(children) != null ) {
                   JSONArray ch = (JSONArray)hashVP.get(children);
                   ch.add(aVal);
                   hashVP.put(children , ch);
               }
               else {
                   JSONArray ch = new JSONArray();
                   ch.add(aVal);
                   hashVP.put(children , ch);
               }
           }
           else {
               r.add(aVal);
           }
       }
       return r.toJavaList(clazz);
   }

s   数据库中数据结构

 

 

 

方法调用


depts 为List < SysDept > depts 数据库取出的depts
List < SysDept > list = listToTreeList(JSONArray.parseArray(JSON.toJSONString(depts)) , "deptId" , "parentId",
"children",SysDept.class);

参考连接:https://www.zhihu.com/tardis/sogou/art/68094736

 

posted @   小尼  阅读(396)  评论(0编辑  收藏  举报
编辑推荐:
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· AI与.NET技术实操系列(六):基于图像分类模型对图像进行分类
点击右上角即可分享
微信分享提示