我正在尝试使用Eclipse ILaunchManager#getLaunchConfigurations
包中的org.eclipse.debug.core
方法,但编译器给我的消息是:
The method getLaunchConfigurations() from the type ILaunchManager refers to the missing type CoreException
我可以看到getLaunchConfigurations()
抛出CoreException
异常,但我找不到包含CoreException
类的jar!有谁知道我需要用哪个罐来解决这个问题?
我正在使用的代码是:
ILaunchManager launchManager = DebugPlugin.getDefault().getLaunchManager();
for (ILaunchConfiguration launchConfiguration : launchManager.getLaunchConfigurations()) {
String configName = launchConfiguration.getName();
}
我在构建路径中包含以下jar:
org.eclipse.debug.core_3.7.100.v20120521-2012
org.eclipse.core.runtime_3.8.0.v20120521-2346
答案 0 :(得分:6)
当您遇到此类问题时,一些有用的网站有:http://findjar.com和http://grepcode.com
以下页面包含搜索结果:http://grepcode.com/search?query=org.eclipse.core.runtime.CoreException&n=
您需要org.eclipse.equinox.common.VERSION.jar
。