--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()});
}