如何通过eclipse plugin.xml按钮启动exe

时间:2018-08-13 08:41:28

标签: eclipse eclipse-plugin eclipse-rcp eclipse-cdt

我们要在Eclipse“ rcp”中启动Windows“ exe” ...

Windows“ exe”位于“ eclipse.exe”相对路径下的文件夹中。

现在,我们要在日食“ rcp”的现有按钮旁边添加一个按钮...

因此,当单击此按钮时,我要调用Windows“ exe”,该窗口位于“ eclipse.exe”旁边的文件夹中。

如何获取“ eclipse.exe”的相对路径,以便进入要运行的“ exe”文件夹,将其命名为“ exe” ...

1 个答案:

答案 0 :(得分:3)

使用Platform.getInstallLocation()获取安装位置(org.eclipse.core.runtime.Platform

URL installURL = Platform.getInstallLocation().getURL();