我是JTrees的新手并且有疑问:
如果我们可以在tree
中添加我们系统中可用的JFileChooser
个文件和目录。基本上我想要一个自定义的JFileChooser,其中文件和目录可以以树的形式显示。
提前致谢:)
我创建了一个树,它正在获取我系统的当前文件,但是如何在JFileChooser中显示该树。这是JTree的代码
public class FileTree extends JPanel {
/** Construct a FileTree */
public FileTree(File dir) {
setLayout(new BorderLayout());
// Make a tree list with all the nodes, and make it a JTree
JTree tree = new JTree(addNodes(null, dir));
// Lastly, put the JTree into a JScrollPane.
JScrollPane scrollpane = new JScrollPane();
scrollpane.getViewport().add(tree);
add(BorderLayout.CENTER, scrollpane);
}
/** Add nodes from under "dir" into curTop. Highly recursive. */
DefaultMutableTreeNode addNodes(DefaultMutableTreeNode curTop, File dir)
{
String curPath = dir.getPath();
DefaultMutableTreeNode curDir = new DefaultMutableTreeNode(curPath);
if (curTop != null) { // should only be null at root
curTop.add(curDir);
}
Vector ol = new Vector();
String[] tmp = dir.list();
for (int i = 0; i < tmp.length; i++)
ol.addElement(tmp[i]);
Collections.sort(ol, String.CASE_INSENSITIVE_ORDER);
File f;
Vector files = new Vector();
// Make two passes, one for Dirs and one for Files. This is #1.
for (int i = 0; i < ol.size(); i++) {
String thisObject = (String) ol.elementAt(i);
String newPath;
if (curPath.equals("."))
newPath = thisObject;
else
newPath = curPath + File.separator + thisObject;
if ((f = new File(newPath)).isDirectory())
addNodes(curDir, f);
else
files.addElement(thisObject);
}
// Pass two: for files.
for (int fnum = 0; fnum < files.size(); fnum++)
curDir.add(new DefaultMutableTreeNode(files.elementAt(fnum)));
return curDir;
}
public Dimension getMinimumSize() {
return new Dimension(200, 400);
}
public Dimension getPreferredSize() {
return new Dimension(200, 400);
}
/** Main: make a Frame, add a FileTree */
public static void main(String[] av) {
JFrame frame = new JFrame("FileTree");
frame.setForeground(Color.black);
frame.setBackground(Color.lightGray);
Container cp = frame.getContentPane();
if (av.length == 0) {
cp.add(new FileTree(new File(".")));
} else {
cp.setLayout(new BoxLayout(cp, BoxLayout.X_AXIS));
for (int i = 0; i < av.length; i++)
cp.add(new FileTree(new File(av[i])));
}
frame.pack();
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
答案 0 :(得分:0)
这是一个非常广泛的问题,但这里有几点指示。
如果你试图将它与jFileChooser
集成,那么事情可能会变得混乱,但这是可能的。
我建议您改为使用代码,但只需进行一些更改即可jFileChooser
。
首先:在FileTree
面板中添加一个选择/打开按钮。按下此按钮后,您可以快速获取所选文件的列表并将其保存到共享变量。
其次:您可以使用共享变量将信息从FileTree
弹出窗口传递回调用它的线程(you could also have a change listener checking for the updated variable),然后您可以使用返回文件,就像来自jFileChooser
的返回语句一样。
注意:
确保只拨打FileTree
班from a separate thread than the EDT(或者你可以阻止EDT,但这通常不是一个好主意):