我创建了一个桌面应用程序,但在生成的可运行 jar 中遇到了问题。在 Eclipse 环境中一切正常,但是当我生成 jar 时,它只显示swt
组件(菜单、选项卡等)。其他库的位置是空白区域(生成图库的库)。同样不会出现set ToolBar
(包含带有图像的按钮),GoogleMap.html
不会出现。
如何正确生成包含这些外部源的可执行 jar?
工具栏图片加载代码:
folderSearchIcon = new Image(display, this.getClass().getResourceAsStream("images/search_folder.png"));
GoogleMap.html 加载代码:
File mapFile = new File("resources/GoogleMap.html");
if(!mapFile.exists()) {
System.out.println("File doesn't exist! " + mapFile.getAbsolutePath());
return;
}
生成可运行的jar:
我在 Eclipse 中的应用程序结构和生成的 jar 结构:
生成的清单:
Manifest-Version: 1.0
Rsrc-Class-Path: ./ swt.jar commons-imaging-1.0-SNAPSHOT.jar org.eclip
se.nebula.widgets.gallery_0.5.3.201210262156.jar xmpcore.jar metadata
-extractor-2.6.3.jar
Class-Path: .
Rsrc-Main-Class: geotagger.AppInit
Main-Class: org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader