【问题标题】:How can I display the contents of a folder in a JTree? [duplicate]如何在 JTree 中显示文件夹的内容? [复制]
【发布时间】:2014-06-14 05:38:35
【问题描述】:

我想要完成的是采用预定义的文件路径并在 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)如何获取根目录下所有文件的路径?
  • 看看@AndrewThompson 的File Browser GUI 了解一些想法

标签: java swing user-interface


【解决方案1】:
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);
}
}

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-02-05
    • 1970-01-01
    • 2012-03-22
    • 2013-02-15
    相关资源
    最近更新 更多