我正在尝试在运行时基于我的java应用程序中的os加载jar(swt.jar)文件。 jar在我的res文件夹中,因为我需要将我的项目导出为可运行的jar。
我的代码:
public class LoaderSwt {
public void loadSwtJar() {
try {
Class.forName ("main.LoaderSwt");
} 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";
URL is = this.getClass().getClassLoader().getResource("res/classifiers/"+swtFileName);
if (is == null)
System.out.println("Can't locate SWT Jar ");
try {
URLClassLoader classLoader = (URLClassLoader) getClass().getClassLoader ();
Method addUrlMethod = URLClassLoader.class.getDeclaredMethod ("addURL", URL.class);
addUrlMethod.setAccessible (true);
URL swtFileUrl = is;
//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: ", e);
}
}
如果我尝试将我的程序导出为外部jar并运行它,我会收到此错误:
C:\Users\michele\Desktop>java -jar YoutubeAnalyzer.jar
Architecture and OS == 64bit win
rsrc:res/classifiers/swt_win_64.jar
Exception in thread "main" java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader.main(JarRsrcLoader.java:58)
Caused by: java.lang.Error: Unresolved compilation problems:
Display cannot be resolved to a type
Display cannot be resolved
at main.WindowYoutube.init(WindowYoutube.java:74)
at main.Launcher.main(Launcher.java:8)
... 5 more
引起:java.lang.Error:未解决的编译问题: 显示无法解析为某种类型 表示该程序无法加载我的swt.jar
解决方案?
[编辑] 这是我的主要课程:
public class Launcher {
public static void main(String[] args){
LoaderSwt loader = new LoaderSwt();
loader.loadSwtJar();
WindowYoutube.init();
}
}
loader.loadSwtJar()的任务是根据操作系统加载我的swt.jar。 WindowYoutube.init()调用并创建我的SWT应用程序。
这是windowsYoutube.init():
import org.eclipse.swt.SWT;
....
import org.eclipse.swt.widgets.Display;
....
public static void init(){
Display display = Display.getDefault();
....
eclipse中的导入给了我“无法解决的类型”
如果我手动添加正确的swt jar我的程序运行正常。 但是如果我想以动态方式加载swt jar我必须从我的构建路径中删除swt.jar的所有引用,所以在eclipse中我有编译错误(它应该这样做)。 这不是创建swt跨平台程序的正确方法吗? 我遵循了一个关于这个的教程,它说不要担心在eclipse中编译错误,因为一旦程序导出了外部jar就可以了。