如何在JTree中显示文件夹的内容?

时间:2014-06-14 05:38:35

标签: java swing user-interface

我想要完成的是采用预定义的文件路径并显示JTree内该文件路径中的每个文件夹和文件。

只需;

Folder1
Folder2
    Folder3a
        ->File3a
    ->File2a
    ->File2b

到目前为止我的内容如下:

public class GUI extends JPanel {

public GUI() {

    super(new GridLayout(1, 2, 20, 0));
    setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 10));

    try {
        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } catch (final Exception ignored) {
    }

    final JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);



    frame.setContentPane(this);
    frame.pack();
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);

}

我希望如何继续前进。到目前为止,所有的东西都是我经历过的大量读物的汇编,而且我不确定如何实现我想要的东西。

1 个答案:

答案 0 :(得分:0)

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));

// Add a listener
tree.addTreeSelectionListener(new TreeSelectionListener() {
  public void valueChanged(TreeSelectionEvent e) {
    DefaultMutableTreeNode node = (DefaultMutableTreeNode) e
        .getPath().getLastPathComponent();
    System.out.println("You selected " + node);
  }
});

// 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);
}
}