我要建立一个类似资源管理器的JTree,但是我只能做到在D:开始展开,我想从D:的上一级目录开始展开,应该怎么写呢?
public FileSystemModel()
{
super(new FileNode(new File(File.separator)));
}