加载jar中包含的资源

时间:2009-02-22 12:00:15

标签: java jar resources

在我的应用程序中,我以这种方式加载资源:

WinProcessor.class.getResource("repository").toString();

这给了我:

file:/root/app/repository   (and I replace "file:" with empty string)

当我从IDE运行我的应用程序时,这工作正常,但是当我运行我的应用程序的jar时:

java -jar app.jar

路径变为:

jar:/root/app.jar!/repository

有什么方法可以解决这个问题吗?

我将使用“repository”目录名称来创建:

ConfigurationContext ctx = (ConfigurationContext) ConfigurationContextFactory.createConfigurationContextFromFileSystem(repositoryString, null);

以同样的方式,我将获得一个文件名(而不是dir),我将以这种方式使用它:

System.setProperty("javax.net.ssl.trustStore", fileNameString)

3 个答案:

答案 0 :(得分:35)

听起来您正在尝试使用FileInputStream或类似的东西加载资源。不要这样做:不要拨打getResource,而是拨打getResourceAsStream并从中读取数据。

(您可以从网址加载资源,但调用getResourceAsStream会更方便。)

编辑:看过你的更新答案后,似乎其他代码依赖于文件系统中物理单个文件中的数据。因此,答案不是首先将其捆绑在jar文件中。你可以检查它是否在一个单独的文件中,如果没有将它提取到一个临时文件中,但这是非常hacky的IMO。

答案 1 :(得分:9)

使用java -jar app.jar运行代码时,java仅使用JAR文件清单中定义的类路径(即Class-Path属性)。如果类在app.jar中,或者类在JAR清单的Class-Path属性中设置的类路径中,则可以使用以下代码片段加载该类,其中{{1} }是完全限定的类名。

className

现在,如果该类不是JAR的一部分,并且它不在清单final String classAsPath = className.replace('.', '/') + ".class"; final InputStream input = ClassLoader.getSystemResourceAsStream( path/to/class ); 中,那么类加载器将找不到它。相反,你可以使用Class-Path,小心处理windows和Unix / Linux / MacOSX之间的差异。

URLClassLoader

在这两个示例中,您将需要处理异常,以及如果无法找到资源,则输入流为// the class to load final String classAsPath = className.replace('.', '/') + ".class"; // the URL to the `app.jar` file (Windows and Unix/Linux/MacOSX below) final URL url = new URL( "file", null, "///C:/Users/diffusive/app.jar" ); //final URL url = new URL( "file", null, "/Users/diffusive/app.jar" ); // create the class loader with the JAR file final URLClassLoader urlClassLoader = new URLClassLoader( new URL[] { url } ); // grab the resource, through, this time from the `URLClassLoader` object // rather than from the `ClassLoader` class final InputStream input = urlClassLoader.getResourceAsStream( classAsPath ); 的事实。此外,如果您需要将null转换为InputStream,则可以使用Apache的公共byte[]。而且,如果您想要IOUtils.toByteArray(...),则可以使用类加载器的Class方法,该方法接受defineClass(...)

您可以在Diffusive源代码中的ClassLoaderUtils类中找到此代码,您可以在SourceForge上找到该代码,网址为github.com/robphilipp/diffusive

RestfulDiffuserManagerResource.createJarClassPath(...)

中的相对和绝对路径为Windows和Unix / Linux / MacOSX创建URL的方法

答案 2 :(得分:5)

构造一个URL,然后可以使用openStream方法加载资源(甚至在jar文件中)。