2

ILaunchManager#getLaunchConfigurationsEclipseパッケージのメソッドを使用しようとしていorg.eclipse.debug.coreますが、コンパイラーから次のメッセージが表示されます。

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

例外がgetLaunchConfigurations()スローされることはわかりますが、クラスCoreExceptionを含むjarが見つかりません。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
4

1 に答える 1

6

このような問題に直面しているときに役立つサイトは次のとおりです。http://findjar.comおよびhttp://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 に答える