在我的应用程序中,我以这种方式加载资源:
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)
答案 0 :(得分:35)
听起来您正在尝试使用FileInputStream
或类似的东西加载资源。不要这样做:不要拨打getResource
,而是拨打getResourceAsStream
并从中读取数据。
(您可以从网址加载资源,但调用getResourceAsStream
会更方便。)
答案 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
答案 2 :(得分:5)
构造一个URL
,然后可以使用openStream
方法加载资源(甚至在jar文件中)。