在命令行中指定的Eclipse项目开放的java文件(open .java file in spec

2019-09-20 17:45发布

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

Answer 1:

让发电机写入文件到被称为源目录到eclipse一个directoty。 当你还在日食启用自动刷新,当你打开与发射新生成的文件也将更新它的索引。



文章来源: open .java file in specified eclipse project from command line