我想将我的用户限制在一个目录及其子目录中,但是“父目录”按钮允许他们浏览到任意目录。
我该怎么做呢?
以防其他人将来需要这个:
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);
您可以通过设置自己的FileSystemView来做到这一点。
艾伦的解决方案几乎是完整的。三个问题有待解决:
public TFile getHomeDirectory()
{
return rootDirectories[0];
}
设置类和构造函数public
换成JFileChooser fileChooser = new JFileChooser(fsv);
_JFileChooser fileChooser = new JFileChooser(fsv.getHomeDirectory(),fsv);
我使用它来限制用户通过 TrueZips TFileChooser 保留在 zip 文件中,并对上述代码稍作修改,这非常有效。非常感谢。
没必要那么复杂。您可以像这样轻松设置 JFileChooser 的选择模式
JFileChooser fc = new JFileChooser();
fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
fc.setMultiSelectionEnabled(false);
您可以在此处阅读更多参考资料如何使用文件选择器