我想在用户主文件夹中打开一个FileDialog窗口(即/ home / user或/ Users / unsername)
我使用System.getProperty:
读取用户主文件夹 String homefolder = System.getProperty(user.home);
变量包含正确的主文件夹。但是当我在FileDialog中设置filterpath时,它打开(在linux中)只有/ home级别没有进入用户主目录。
这是源代码:
FileDialog dialog = new FileDialog(shell);
dialog.setText("Choose a certificate");
String platform = SWT.getPlatform();
String homefolder = System.getProperty("user.home");
dialog.setFilterPath(homefolder);
有什么想法吗? 这是一个截图:
答案 0 :(得分:5)
您的代码与SWT 3.6.1完美配合。有一个错误报告here说明这是SWT版本中的问题< = 3.3并在3.4中修复。
因此,解决方案是安装一个永不版本(理想情况下是当前版本)。
由于您提到使用Maven存储库,因此在此处有一个SWT 3.8:
maven project: SWT 3.5 dependency: any official public repo?