我正在使用Netbeans中的GUI构建器创建一个JTree,我可以使用以下代码将节点和所有内容添加到树中
public static void listAllFiles(String directory, DefaultMutableTreeNode parent, Boolean recursive) {
File [] children = new File(directory).listFiles(); // list all the files in the directory
for (int i = 0; i < children.length; i++) { // loop through each
DefaultMutableTreeNode node = new DefaultMutableTreeNode(children[i].getName());
// only display the node if it isn't a folder, and if this is a recursive call
if (children[i].isDirectory() && recursive) {
parent.add(node); // add as a child node
listAllFiles(children[i].getPath(), node, recursive); // call again for the subdirectory
} else if (!children[i].isDirectory()){ // otherwise, if it isn't a directory
parent.add(node); // add it as a node and do nothing else
}
}
}
然后将其称为
listAllFiles("C:\\test", defaultMutableTreeNode , true);
我可以将此代码添加到JTree的init()
方法中,这样当它构建时,它将包含Test文件夹中的所有文件夹和文件,但是我真正想做的是当我点击按钮时将节点添加到JTree但我无法弄清楚如何做到这一点!我可以将listAllFiles("C:\\test", defaultMutableTreeNode , true);
添加到新按钮的ActionPerformed
,但之后无法找到defaultMutableTreeNode
。
那么如何才能做到这一点的最好方法呢?我点击按钮时会创建一个新的DefaultMutableTreeNode
吗?
答案 0 :(得分:0)
嗯,我想出了一种方法,但我不太确定是否是最好的方法!我基本上在按钮的ActionPerformed中创建了一个新的DefaultMutableTreeNode,无论如何都正确填充了树
javax.swing.tree.DefaultMutableTreeNode treeNode1 = new javax.swing.tree.DefaultMutableTreeNode("root");
jTree.setModel(new javax.swing.tree.DefaultTreeModel(treeNode1));
listAllFiles(folderPath, treeNode1, true);
但是想知道是否有更好的方法来做到这一点......编码明智