加载包含在jar中的资源

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

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

这给了我:

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

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

 java -jar app.jar 

path变成:

 jar:/root/app.jar!/repository 

有没有办法解决这个问题?

我将使用“存储库”目录名称来创build这个:

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

以同样的方式,我会得到一个文件名(而不是一个目录),我会用这种方式:

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

这听起来像你然后试图加载资源使用FileInputStream或类似的东西。 不要这样做:不要调用getResource ,而是调用getResourceAsStream并从中读取数据。

(您可以从URL加载资源,但调用getResourceAsStream更方便一些。)

编辑:看到你的更新的答案,似乎其他位的代码依赖于文件系统中的物理单个文件中的数据。 因此,答案不是首先将它捆绑在一个jar文件中。 你可以检查它是否在一个单独的文件,如果不是提取到一个临时文件,但这是相当hacky国际海事组织。

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

 final String classAsPath = className.replace('.', '/') + ".class"; final InputStream input = ClassLoader.getSystemResourceAsStream( path/to/class ); 

现在,如果这个类不是JAR的一部分,而且它不在清单的Class-Path ,那么类加载器就不会find它。 相反,你可以使用URLClassLoader ,小心处理windows和Unix / Linux / MacOSX之间的差异。

 // 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 ); 

在这两个示例中,您都需要处理exception,并且如果找不到资源,则inputstream为null 。 此外,如果您需要将InputStream转换为byte[] ,则可以使用Apache的commons IOUtils.toByteArray(...) 。 而且,如果你想要一个Class ,你可以使用类加载器的defineClass(...)方法,它接受byte[]

您可以在Diffusive源代码的ClassLoaderUtils类中find此代码,您可以在SourceForge上的github.com/robphilipp/diffusive上find它

还有一种方法是在RestfulDiffuserManagerResource.createJarClassPath(...)从相对path和绝对path创buildWindows和Unix / Linux / MacOSX的URL RestfulDiffuserManagerResource.createJarClassPath(...)

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