当前位置: 代码迷 >> J2SE >> 急jtree 遍历,该如何解决
  详细解决方案

急jtree 遍历,该如何解决

热度:477   发布时间:2016-04-24 02:12:01.0
急!jtree 遍历
我想得到指定节点的所有子节点treepath(路径),不是只要节点名称,我该怎么做呢?

------解决方案--------------------
Java code
DefaultMtableTreeNode node = 指定的节点;int chlCount = node.getChildCount();List<TreePath[]> paths = new ArrayList<TreePath[]>();DefaultMtableTreeNode chlNode = null;for(int i = 0; i < chlCount; i++){  chlNode = node.getChildAt(i);  paths.add(chl.getPath());}