无法在 32 位 JVM 上加载 64 位 SWT 库( 替换 SWT 文件 )
我正在尝试调试这个问题,但不确定我需要在哪里替换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响应之后,我感到困惑
当我尝试执行此以检查JVM时,Eclipse中的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的命令行上尝试时 - 版本
所以我的理解系统有64位JVM,而Eclispe正在读取32位JVM。那么我怎么能转移系统来读取32位JVM?