JavaFX目录选择器:如何在Linux中隐藏文件?

时间:2015-05-21 07:19:17

标签: java linux file javafx javafx-8

我使用目录选择器打开一个只选择文件夹的窗口。它在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());
    }

示例:

example

0 个答案:

没有答案