java.lang.RuntimeException:应用程序;org.eclipse.ui.ide.workbench“;在注册表中找不到

java.lang.RuntimeException:应用程序;org.eclipse.ui.ide.workbench“;在注册表中找不到,java,android,eclipse,eclipse-plugin,installation,Java,Android,Eclipse,Eclipse Plugin,Installation,我使用的是EclipseV21.10.1-569685和JDK版本1.7.0_13-b20 在Eclipse要求我重新启动软件后,我下载了新的更新(帮助->安装新软件),但我遇到了以下错误: !SESSION 2013-04-10 06:49:45.348 ----------------------------------------------- eclipse.buildId=v21.1.0-569685 java.version=1.7.0_13

我使用的是EclipseV21.10.1-569685和JDK版本1.7.0_13-b20 在Eclipse要求我重新启动软件后,我下载了新的更新(帮助->安装新软件),但我遇到了以下错误:

!SESSION 2013-04-10 06:49:45.348 -----------------------------------------------
        eclipse.buildId=v21.1.0-569685
        java.version=1.7.0_13
        java.vendor=Oracle Corporation
        BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
        Framework arguments:  -product com.android.ide.eclipse.adt.package.product
        Command-line arguments:  -os win32 -ws win32 -arch x86 -product com.android.ide.eclipse.adt.package.product

        !ENTRY org.eclipse.osgi 2 0 2013-04-10 06:49:47.671
        !MESSAGE One or more bundles are not resolved because the following root constraints are not resolved:
        !SUBENTRY 1 org.eclipse.osgi 2 0 2013-04-10 06:49:47.671
        !MESSAGE Bundle reference:file:plugins/org.eclipse.e4.ui.workbench.addons.swt_0.10.1.v20120827-151636.jar was not resolved.
        !SUBENTRY 2 org.eclipse.e4.ui.workbench.addons.swt 2 0 2013-04-10 06:49:47.672
        !MESSAGE Missing required bundle org.eclipse.e4.ui.model.workbench_0.9.1.
        !SUBENTRY 1 org.eclipse.osgi 2 0 2013-04-10 06:49:47.672
        .
        .
        .
        .

        !ENTRY org.eclipse.osgi 4 0 2013-04-10 06:49:47.941
        !MESSAGE Application error
        !STACK 1
        java.lang.RuntimeException: Application "org.eclipse.ui.ide.workbench" could not be found in the registry. The applications available are: org.eclipse.equinox.app.error, org.eclipse.equinox.p2.director, org.eclipse.equinox.p2.garbagecollector.application, org.eclipse.equinox.p2.publisher.InstallPublisher, org.eclipse.equinox.p2.publisher.EclipseGenerator, org.eclipse.equinox.p2.publisher.ProductPublisher, org.eclipse.equinox.p2.publisher.FeaturesAndBundlesPublisher, org.eclipse.equinox.p2.reconciler.application, org.eclipse.equinox.p2.repository.repo2runnable, org.eclipse.equinox.p2.repository.metadataverifier, org.eclipse.equinox.p2.artifact.repository.mirrorApplication, org.eclipse.equinox.p2.metadata.repository.mirrorApplication, org.eclipse.equinox.p2.updatesite.UpdateSitePublisher, org.eclipse.equinox.p2.publisher.UpdateSitePublisher, org.eclipse.equinox.p2.publisher.CategoryPublisher, org.eclipse.update.core.standaloneUpdate, org.eclipse.update.core.siteOptimizer, org.eclipse.ant.core.antRunner, org.eclipse.cdt.codan.core.application, org.eclipse.cdt.core.GeneratePDOM, org.eclipse.help.base.infocenterApplication, org.eclipse.help.base.helpApplication, org.eclipse.help.base.indexTool, org.eclipse.jdt.apt.core.aptBuild, org.eclipse.jdt.core.JavaCodeFormatter, org.eclipse.jdt.core.JavaIndexer.
            at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:248)
            at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29)
            at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
            at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
            at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353)
            at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
            at java.lang.reflect.Method.invoke(Unknown Source)
            at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629)
            at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584)
            at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
运行Eclipse应该怎么做?

org.Eclipse.ui.ide.workbench应用程序包含在org.Eclipse.platform插件中。由于某些原因,此插件未包含在您的实例中。也许,安装ADT会使其无效。
尝试恢复旧配置(帮助>关于>安装详细信息>安装历史记录)并再次重新安装ADT。

eclipse-clean是否有帮助?首先从插件->安装>删除已经安装的插件,第二次安装从市场上安装ADT,使用Eclipse为java或C++开发人员(这是java模式)。
  • 控制面板→ 查看高级系统设置→ 高级选项卡→ 环境变量
  • 现在你必须做两件事:

  • 创建新变量(单击“新建”按钮):

    • 变量名:
      JAVA\u HOME
    • 变量值:
      C:\ProgramFiles\Java\[您的Java版本]
  • 编辑Path变量并将其添加到该变量的末尾:

    ;%JAVA_HOME%\bin
    
  • 删除(或移动到临时文件夹)您的$home/.eclipse文件夹(即配置文件夹)


    这对我有用。

    太好了!如果安装MinGW和MinSYS,则必须将它们的bin路径添加到Path变量中,因此现在我理解了您的问题。。。哪里