public static JSONObject getDeptTree(List<Map<String,Object>> list,String id) throws JSONException{
JSONObject json=new JSONObject();
JSONArray jsons=new JSONArray();//children数组
for (Map<String, Object> map : list) {
String id=map.get("ID")==null ? "" : map.get("ID").toString();
String pid=map.get("PID")==null ? "" : map.get("PID").toString();
String name=map.get("NAME")==null ? "" : map.get("NAME").toString();
String url=map.get("URL")==null ? "" : map.get("URL").toString();
if(pid.equals(deptid)){
jsons.put(getDeptTree(list,id));
}
if(deptid.equals(id)){
json.put("ID",id);
json.put("PID", pid);
json.put("name", name);
json.put("url",url);
}
}
json.put("children", jsons);
return json;
}
转载于:https://blog.51cto.com/12532790/1969499