在我的应用程序中,我需要使用文件对话框选择没有文件扩展名的文件。有没有办法做到这一点?请帮助我找到解决方案。我当前没有任何过滤器的代码如下:
@Override
public void handleEvent(Event event) {
FileDialog dialog = new FileDialog(shell, SWT.NONE);
String filePath = dialog.open();
if (filePath != null && !filePath.equals("")) {
//Do my Operations
}
}