我想在JTree
中获得一个桌面视图,如下所示:
我有一个sample code只显示c:\
,因为我是Java的新手,发现实现它的困难。
到目前为止,这是我的代码:
public class FileTreeDemo {
public static void main(String[] args) {
File root;
if (args.length > 0) {
root = new File(args[0]);
} else {
root = new File(System.getProperty("user.home"));
}
System.out.println(root);
FileTreeModel model = new FileTreeModel(root);
JTree tree = new JTree();
tree.setModel(model);
tree.setRootVisible(true);
tree.setShowsRootHandles(true);
JScrollPane scrollpane = new JScrollPane(tree);
JFrame frame = new JFrame("FileTreeDemo");
frame.getContentPane().add(scrollpane, "Center");
frame.setSize(400,600);
frame.setVisible(true);
}
}
FileTreeModel类
class FileTreeModel implements TreeModel {
protected File root;
public FileTreeModel(File root) { this.root = root; }
public Object getRoot() { return root; }
public boolean isLeaf(Object node) { return ((File)node).isFile(); }
public int getChildCount(Object parent) {
String[] children = ((File)parent).list();
if (children == null) return 0;
return children.length;
}
public Object getChild(Object parent, int index) {
String[] children = ((File)parent).list();
if ((children == null) || (index >= children.length)) return null;
return new File((File) parent, children[index]);
}
public int getIndexOfChild(Object parent, Object child) {
String[] children = ((File)parent).list();
if (children == null) return -1;
String childname = ((File)child).getName();
for(int i = 0; i < children.length; i++) {
if (childname.equals(children[i])) return i;
}
return -1;
}
public void valueForPathChanged(TreePath path, Object newvalue) {}
public void addTreeModelListener(TreeModelListener l) {}
public void removeTreeModelListener(TreeModelListener l) {}
}
到目前为止,我试图更改“系统属性”,但它不起作用:
"user.dir"
请告诉我一些指示,谢谢。
答案 0 :(得分:3)
如果我正确理解您的要求,那么您需要使用FileSystemView类来获取特定于操作系统的数据,例如根分区。由于JDK1.1 File
API不允许访问操作系统相关信息。
注意:在Windows Desktop
文件夹中被视为根节点。例如,在Windows上运行以下代码段应打印您在桌面上看到的文件夹,非常类似于您已包含的图片:
FileSystemView fileSystemView = FileSystemView.getFileSystemView();
for (File file : fileSystemView.getRoots()) {
System.out.println("Root: " + file);
for (File f : file.listFiles()) {
if (f.isDirectory()) {
System.out.println("Child: " + f);
}
}
}
您可以使用以下方法为每个节点设置正确的图标:
答案 1 :(得分:1)
我认为Windows桌面&#34;特殊文件夹&#34; (参见this Wikipedia article)是几个文件夹的组合,例如&#34; C:\ Users [username] \ Desktop&#34;和&#34; C:\ Users \ Public \ Public Desktop&#34;。要在树节点中组合多个文件夹,您需要一个自定义树模型,如your earlier question中所述。