64位兼容32位java swt,支持Windows / Mac上的SWT& 32位/ 64位

I'm currently working with the DJProject to put a browser into my Java Swing application. DJProject uses SWT to run and I have very little experience with SWT.

I want to support Windows and Mac both 32bit and 64bit. I understand there is a swt.jar file for each of these platforms. I have all 4 swt.jar libraries added to my classpath as a library to the main application.

My problem is when I try running the application on a Mac for example I get the error:

Exception in thread "main" java.lang.UnsatisfiedLinkError: Cannot load 32-bit SWT libraries on 64-bit JVM

how would I go about to automatically tell Java at run-time to load the proper variation of the SWT library.

解决方案

You can detect the OS and Java version and dynamically load the appropriate jar:

private void loadSwtJar() {

try {

Class.forName (ORG_ECLIPSE_SWT_WIDGETS_SHELL);

return;

} catch (ClassNotFoundException e) {

System.out.println (" ! Need to add the proper swt jar: "+e.getMessage());

}

String osName = System.getProperty("os.name").toLowerCase();

String osArch = System.getProperty("os.arch").toLowerCase();

//NOTE - I have not added the mac and *nix swt jars.

String osPart =

osName.contains("win") ? "win" :

osName.contains("mac") ? "cocoa" :

osName.contains("linux") || osName.contains("nix") ? "gtk" :

null;

if (null == osPart)

throw new RuntimeException ("Cannot determine correct swt jar from os.name [" + osName + "] and os.arch [" + osArch + "]");

String archPart = osArch.contains ("64") ? "64" : "32";

System.out.println ("Architecture and OS == "+archPart+"bit "+osPart);

String swtFileName = "swt_" +osPart + archPart +".jar";

String workingDir = System.getProperty("user.dir");

String libDir = "\\lib\\";

File file = new File(workingDir.concat(libDir), swtFileName);

if (!file.exists ())

System.out.println("Can't locate SWT Jar " + file.getAbsolutePath());

try {

URLClassLoader classLoader = (URLClassLoader) getClass().getClassLoader ();

Method addUrlMethod = URLClassLoader.class.getDeclaredMethod ("addURL", URL.class);

addUrlMethod.setAccessible (true);

URL swtFileUrl = file.toURI().toURL();

//System.out.println("Adding to classpath: " + swtFileUrl);

addUrlMethod.invoke (classLoader, swtFileUrl);

}

catch (Exception e) {

throw new RuntimeException ("Unable to add the swt jar to the class path: " + file.getAbsoluteFile (), e);

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值