当用户点击我生成的属性上的按钮时,我正在尝试创建文件浏览器。 我使用以下代码,它在我的工作区中获取整个文件。 但是,我需要浏览我的所有电脑。
IFile[] files = WorkspaceResourceDialog.openFileSelection(null, "File selection", "Please select any file", false, null, null);
任何想法!
答案 0 :(得分:0)
ResourceDialog resourceDialog=
new ResourceDialog(Display.getCurrent().getActiveShell(),
"Select your image", SWT.OPEN);
resourceDialog.create();
resourceDialog.open();
String path=resourceDialog.getURIText();