-1
--launcher.openFile
打開文件時未將其分配給任何項目,因此不同的功能(如代碼輔助)不起作用。我實際上試圖自動創建一個源文件,並且想要編輯它,就像我在eclipse中以默認方式創建它一樣。從命令行打開指定eclipse項目中的.java文件
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()});
}
你想開發某種IDE? – 2012-08-03 14:59:52
是的,這樣的 – user1574386 2012-08-03 15:01:16
我想從服務器 – user1574386 2012-08-03 15:01:58