ユーザーをディレクトリとそのサブディレクトリに制限したいのですが、[親ディレクトリ] ボタンを使用すると、任意のディレクトリを参照できます。
どうすればいいですか?
ユーザーをディレクトリとそのサブディレクトリに制限したいのですが、[親ディレクトリ] ボタンを使用すると、任意のディレクトリを参照できます。
どうすればいいですか?
他の誰かが将来これを必要とする場合:
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」メソッドを作成する必要がありますが、これはユーザーを 1 つ以上のディレクトリに制限します。
そして、次のように使用します。
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を設定することでこれを行うことができます。
アランの解決はほぼ完了です。次の 3 つの問題を解決する必要があります。
public TFile getHomeDirectory()
{
return rootDirectories[0];
}
クラスとコンストラクタを設定するpublic
JFileChooser fileChooser = new JFileChooser(fsv);
に変更JFileChooser fileChooser = new JFileChooser(fsv.getHomeDirectory(),fsv);
TrueZip TFileChooser を介してユーザーが zip ファイルにとどまるように制限するために使用し、上記のコードをわずかに変更すると、これは完全に機能します。どうもありがとう。
それほど複雑にする必要はありません。このように JFileChooser の選択モードを簡単に設定できます
JFileChooser fc = new JFileChooser();
fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
fc.setMultiSelectionEnabled(false);
ここで詳細なリファレンスを読むことができますファイルチューザーの使用方法