我試圖調試此問題,但並不確定在哪裏需要替換爲Eclipse的SWT jar文件。無法在32位JVM上加載64位SWT庫(替換SWT文件)
當前系統配置:
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 提取的壓縮文件 有無文件如下所示
導航到複製文件SWT.JAR C:\ Program Files文件\蝕\插件 除去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位的Eclipse並安裝相應的64個版本。
不是一個選項
解決方法的paulsm4和保羅·韋伯斯特響應& 我很困惑
當我試圖執行此檢查JVM,JRE版本後在Eclipse中
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?
您要替換的文件是帶有swt.jar的'org.eclipse.swt.win32.win32.x86_64_3.6.2.v3659c.jar'。不是那個有名字的人。 –
什麼引起了錯誤?它是你的Eclipse還是你正在開發的應用程序? –
@PaulWebster:當我這樣做時,Eclispe拋出一個錯誤「發生了一個錯誤。請參閱日誌文件」 –