2012-03-15 159 views
-2

我正在开发基于eclipse的工具。因为我进入Windows XP的窗口7. 我安装我的工具在Windows 7 64位。 我无法启动我的工具。无法启动在Windows 7 64位操作系统eclipse.exe

请在下面的日志中找到。

 
!SESSION Thu Mar 15 16:40:12 CET 2012 ------------------------------------------ 
!ENTRY org.eclipse.equinox.launcher 4 0 2012-03-15 16:40:12.287 
!MESSAGE Exception launching the Eclipse Platform: 
!STACK 
java.lang.ClassNotFoundException: org.eclipse.core.runtime.adaptor.EclipseStarter 
    at java.net.URLClassLoader.findClass(URLClassLoader.java:423) 
    at java.lang.ClassLoader.loadClass(ClassLoader.java:653) 
    at java.lang.ClassLoader.loadClass(ClassLoader.java:619) 
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:616) 
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) 
    at org.eclipse.equinox.launcher.Main.run(Main.java:1407) 
    at org.eclipse.equinox.launcher.Main.main(Main.java:1383) 
+1

“windows 7 bit OS”?那是一些奇特的新版本吗? – skaffman 2012-03-15 16:21:12

+0

你是否需要工具ver或windows版本? – Manjunath 2012-03-15 16:23:18

+1

@skaffman:M $通过修剪未使用的位来削减代码扩展。 – Dave 2012-03-15 16:23:52

回答

1

Windows 64位是与Windows(32位)不同的平台。当你构建一个基于Eclipse的产品时,你必须采取特殊的步骤为其他平台构建它。因此,如果您在32位Windows上构建产品,则它不一定会在64位Windows上运行。

要进行基于Eclipse的产品的跨平台导出,您首先需要Delta Pack。阅读this了解详情(该博客谈论3.5版本 - 确保获得适用于任何Eclipse版本的Delta Pack)。

+0

我认为这更可能是一个试图运行32位Eclipse IDE工具,使用64位JRE/JDK或使用32位JRE/JDK的64位Eclipse IDE工具。无论哪种情况,OP都需要确认他在Windows 7 64位系统中使用的Eclipse IDE和JRE/JDK版本。 – ecle 2012-03-18 09:18:10

相关问题