如何限制JFileChooser目录?

我想限制我的用户到一个目录及其子目录,但“父目录”button允许他们浏览到任意目录。

我应该怎么做呢?

你可以通过设置自己的FileSystemView来做到这一点。

以后任何人都需要这个:

 class DirectoryRestrictedFileSystemView extends FileSystemView { private final File[] rootDirectories; DirectoryRestrictedFileSystemView(File rootDirectory) { this.rootDirectories = new File[] {rootDirectory}; } DirectoryRestrictedFileSystemView(File[] rootDirectories) { this.rootDirectories = rootDirectories; } @Override public File createNewFolder(File containingDir) throws IOException { throw new UnsupportedOperationException("Unable to create directory"); } @Override public File[] getRoots() { return rootDirectories; } @Override public boolean isRoot(File file) { for (File root : rootDirectories) { if (root.equals(file)) { return true; } } return false; } } 

您显然需要制作一个更好的“createNewFolder”方法,但是这会将用户限制在多个目录中的一个。

像这样使用它:

 FileSystemView fsv = new DirectoryRestrictedFileSystemView(new File("X:\\")); JFileChooser fileChooser = new JFileChooser(fsv); 

或者像这样:

 FileSystemView fsv = new DirectoryRestrictedFileSystemView( new File[] { new File("X:\\"), new File("Y:\\") }); JFileChooser fileChooser = new JFileChooser(fsv); 

Allain的解决scheme几乎完成。 有三个问题需要解决:

  1. 点击“主页” – button,将用户踢出限制
  2. DirectoryRestrictedFileSystemView无法在软件包外部访问
  3. 起点不是Root

  1. 追加@Override到DirectoryRestrictedFileSystemView

public TFile getHomeDirectory() { return rootDirectories[0]; }

  1. 设置public类和构造函数

  2. 更改JFileChooser fileChooser = new JFileChooser(fsv);JFileChooser fileChooser = new JFileChooser(fsv.getHomeDirectory(),fsv);

我使用它来限制用户通过TrueZips TFileChooser保留在一个zip文件中,并对上面的代码进行细微的修改,这是完美的。 非常感谢。

不需要那么复杂。 您可以像这样轻松地设置JFileChooser的select模式

 JFileChooser fc = new JFileChooser(); fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); fc.setMultiSelectionEnabled(false); 

您可以在这里阅读更多的参考如何使用文件select器