SWT FileDialog: Selecting directories instead of f

2020-02-01 03:54发布

Can I use the SWT FileDialog to select folders instead of files?

标签: java swt
1条回答
戒情不戒烟
2楼-- · 2020-02-01 04:56

You could use the DirectoryDialog instead. Here is some sample code:

public static void main(String[] args) {
    Display display = new Display();
    Shell shell = new Shell(display);
    shell.open();
    DirectoryDialog dialog = new DirectoryDialog(shell);
    dialog.setFilterPath("c:\\"); // Windows specific
    System.out.println("RESULT=" + dialog.open());
    while (!shell.isDisposed()) {
        if (!display.readAndDispatch())
            display.sleep();
    }
    display.dispose();
}

Here is a slightly larger example.

查看更多
登录 后发表回答