将 JTree 添加到 JFileChooser
Adding JTree to JFileChooser
我是 JTrees 新手,有一个疑问:
如果我们可以在 JFileChooser
中添加 tree
个我们系统中可用的文件和目录。基本上我想要一个自定义的 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);
}
}
这是一个非常宽泛的问题,但这里有几点建议。
如果您尝试将它与 jFileChooser
集成,事情可能会变得混乱,但这是有可能的。
我建议您改为使用您的代码,但进行一些更改以像 jFileChooser
。
首先:在 FileTree
面板中添加一个 Select/Open 按钮。按下此按钮后,您可以快速获取所选文件的列表并将它们保存到共享变量中。
其次:您可以使用共享变量将来自 FileTree
弹出窗口 window 的信息传递回调用它的线程 (you could also have a change listener checking for the updated variable),然后您可以使用 returned 文件执行预期任务,就像 jFileChooser
.
中的 return 语句一样
注意:
确保你只调用 FileTree
class (或者你可以阻止 EDT,但这通常不是一个好主意):
我是 JTrees 新手,有一个疑问:
如果我们可以在 JFileChooser
中添加 tree
个我们系统中可用的文件和目录。基本上我想要一个自定义的 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);
}
}
这是一个非常宽泛的问题,但这里有几点建议。
如果您尝试将它与 jFileChooser
集成,事情可能会变得混乱,但这是有可能的。
我建议您改为使用您的代码,但进行一些更改以像 jFileChooser
。
首先:在 FileTree
面板中添加一个 Select/Open 按钮。按下此按钮后,您可以快速获取所选文件的列表并将它们保存到共享变量中。
其次:您可以使用共享变量将来自 FileTree
弹出窗口 window 的信息传递回调用它的线程 (you could also have a change listener checking for the updated variable),然后您可以使用 returned 文件执行预期任务,就像 jFileChooser
.
注意:
确保你只调用 FileTree
class