--launcher.openFile
打开文件而不将其分配给任何项目,因此代码辅助等不同功能不起作用。我实际上是在尝试自动创建一个源文件并希望像我在 eclipse 中默认创建它一样对其进行编辑。
private void openInEclipse(File file) throws IOException {
String eclipsePath = "G:/eclipse/eclipse-java-juno-win32/eclipse/eclipse.exe";
Runtime.getRuntime().exec(new String[]{eclipsePath, file.getAbsolutePath()});
}