我想从 Eclipse 插件中搜索文件。我使用了以下代码,但它不起作用。
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
String str = JOptionPane.showInputDialog(null,
"Please enter the search file name");
for (IProject project : root.getProjects()) {
IFile file = project.getFile(str);
if (file.exists()) {
JOptionPane.showMessageDialog(null, file.getName());
} else {
JOptionPane.showMessageDialog(null, "File Not Found! ");
}
}