我正在尝试调试此问题,但不确定我需要在哪里替换Eclipse 的 SWT jar 文件。
当前系统配置:
Eclipse Helios 3.6 - 32 Bit
JDK 1.6
JVM - 32 Bit
Windows 7 - 64 Bit
错误信息:
java.lang.UnsatisfiedLinkError: Cannot load 64-bit SWT libraries on 32-bit JVM
at org.eclipse.swt.internal.Library.loadLibrary(Library.java:194)
at org.eclipse.swt.internal.Library.loadLibrary(Library.java:174)
at org.eclipse.swt.internal.C.<clinit>(C.java:21)
at org.eclipse.swt.widgets.Display.<clinit>(Display.java:138)
at org.eclipse.ui.internal.Workbench.createDisplay(Workbench.java:687)
at org.eclipse.ui.PlatformUI.createDisplay(PlatformUI.java:161)
at de.vogella.rcp.intro.first.Application.start(Application.java:18)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
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:369)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:620)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:575)
at org.eclipse.equinox.launcher.Main.run(Main.java:1408)
at org.eclipse.equinox.launcher.Main.main(Main.java:1384)
An error has occurred. See the log file
解决方法:
Link1:了解问题的原因,我尝试将 64 位 SWT 替换为 32 位,但我不确定我是否做得对?
下载 32 位文件 swt-3.6.1-win32-win32-x86.zip 解压 zip 文件 有文件如下图
复制的 swt.jar 文件导航到 C:\Program Files\eclipse\plugins 删除 64 位 Swt 文件(即 org.eclipse.swt.win32.win32.x86_64.source_3.6.2.v3659c )放置复制的 swt.jar 文件并重新启动
仍然抛出相同的错误
还尝试将 swt.jar 文件重命名为 org.eclipse.swt.win32.win32.x86_64.source_3.6.2.v3659c
还是一样的错误
Link2:建议了替代解决方案,但无法解决问题。
还是一样的错误
我真的不想卸载 32-JVM 和 32-Bit Eclipse 并安装相应的 64 位版本。
不是选项
解决方法 在paulsm4和Paul Webster响应之后,我很困惑
当我尝试执行此操作以检查 Eclipse 中的 JVM、JRE 版本时
package javaVersion;
public class JavaVersion
{
public static void main( String[] args )
{
System.out.println( "JRE Version :" + System.getProperty( "java.runtime.version" ) );
System.out.println( "JVM Bit size: " + System.getProperty( "sun.arch.data.model" ) );
}
}
输出:
1.6.0_31-b05
JVM Bit size: 32
但是,当我在命令行上尝试 JAVA - VERSION
所以我的理解系统有 64 位 JVM,而 Eclispe 正在读取 32 位 JVM。那么如何转移系统读取 32 位 JVM 呢?