解决方法
您可以使用
DirectoryDialog
.
Here是一些示例代码:
- 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是一个稍大的例子.