gpt4 book ai didi

java - 无法在 32 位 JVM 上加载 64 位 SWT 库(替换 SWT 文件)

转载 作者:行者123 更新时间:2023-12-02 04:54:09 27 4
gpt4 key购买 nike

我正在尝试调试这个问题,但不确定我到底需要在哪里替换 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

解决方法:

  1. Link1 :了解问题的原因,我尝试将 64 位 SWT 替换为 32 位,但我不确定我这样做是否正确?

    下载的 32 位文件 swt-3.6.1-win32-win32-x86.zip 提取了 zip 文件 有如下图所示的文件

    enter image description here

    复制的 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

    仍然是同样的错误

  2. Link2 : 建议替代解决方案,但无法解决问题。

    仍然是同样的错误

  3. 我真的不想卸载 32-JVM 和 32 位 Eclipse 并安装相应的 64 位版本。

    不是一个选项

paulsm4Paul 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 命令行时 - 版本

enter image description here

所以我理解的系统有 64 位 JVM,而 Eclispe 正在读取 32 位 JVM。那么我怎样才能将系统转移到读取 32 位 JVM 呢?

最佳答案

Eclipse 正在使用您在启动配置中定义的任何 JRE 来启动您的应用程序。由于您运行的是 32 位 Eclipse,因此您正在针对其 32 位 SWT 库运行/调试,并且需要运行 32 位 JRE。

无论出于何种原因,您的 64 位 JRE 都是默认安装的 JRE。

要更改此设置,请首先确保您在“已安装的 JRE”首选项中配置了 32 位 JRE。转至 Window -> Preferences 并导航至 Java -> Installed JRE:

Installed JREs

您可以单击“添加”并导航到 32 位 JVM 的 JAVA_HOME 来添加它。

然后在您的运行配置中,找到您的 Eclipse 应用程序并确保运行时 JRE 设置为您刚刚配置的 32 位 JRE:

Run Configuration

(请注意未突出显示的组合框。)

不要尝试替换 SWT jar,这可能会导致糟糕的结果。

关于java - 无法在 32 位 JVM 上加载 64 位 SWT 库(替换 SWT 文件),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30967985/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com