2

我正在尝试使用ILaunchManager#getLaunchConfigurationsEclipseorg.eclipse.debug.core包中的方法,但编译器给了我消息:

The method getLaunchConfigurations() from the type ILaunchManager refers to the missing type CoreException

我可以看到getLaunchConfigurations()抛出CoreException异常,但我找不到包含CoreException该类的 jar!有谁知道我需要使用哪个 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
4

1 回答 1

6

当您遇到此类问题时,一些有用的网站是:http: //findjar.comhttp://grepcode.com

以下页面有搜索结果:http ://grepcode.com/search?query=org.eclipse.core.runtime.CoreException&n=

你需要org.eclipse.equinox.common.VERSION.jar.

于 2013-02-12T17:43:06.500 回答