Java递归获得TreeJson
2020-12-13 02:35
标签:png author 根据 turn tree 解析 mic 联合 获取 源码如下 应用场景 注意,使用JSON转换 以上,拷贝本地运行,任意应用。 Java递归获得TreeJson 标签:png author 根据 turn tree 解析 mic 联合 获取 原文地址:https://blog.51cto.com/zl0828/2410368package com.zl.demo;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Java递归获取TreeJson
* @author ZhangLi
* @date 2019年6月18日 上午11:10:45
* @WeiXin zl4828
* @备注 沫沫金原创提供,仅供参考
*/
public class TreeJson {
public static void main(String[] args) {
TreeJson treeJson = new TreeJson();
treeJson.treeMap.add(new HashMap
例如,Echarts树形图形{
name: ‘根节点‘,
pid: null,
id: 0,
children: [{
name: ‘节点1‘,
pid: 0,
id: 1,
children: [{
name: ‘节点11‘,
pid: 1,
id: 11,
children: []
}, {
name: ‘节点12‘,
pid: 1,
id: 12,
children: []
}, {
name: ‘节点13‘,
pid: 1,
id: 13,
children: []
}]
}, {
name: ‘节点2‘,
pid: 0,
id: 2,
children: []
}, {
name: ‘节点3‘,
pid: 0,
id: 3,
children: []
}]
};
上一篇:winform网络编程(一)
下一篇:转:netflix推荐系统竞赛