我使用目录选择器打开一个只选择文件夹的窗口。它在Windows中工作正常,但在linux中以及文件夹中它显示目录中的文件(它们被禁用以供选择)。是否可以隐藏文件?
DirectoryChooser chooser = new DirectoryChooser();
chooser.setTitle("Select Source Directory");
File file = chooser.showDialog(new Stage());
if (file != null) {
isPathSelected = true;
textField.setText(file.getAbsolutePath());
}
示例: