-1

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

1 回答 1

0

让生成器将文件写入一个称为 eclipse 的源目录的目录中。当您还在 Eclipse 中启用自动刷新时,它会在您使用启动器打开新生成的文件时更新它的索引。

于 2012-08-03T15:14:13.423 回答