我想从我的罐子里像这样读一个资源:

File file;
file = new File(getClass().getResource("/file.txt").toURI());
BufferedReader reader = new BufferedReader(new FileReader(file));

//Read the file

当在Eclipse中运行它时,它工作得很好,但如果我将它导出到一个jar,然后运行它,会有一个IllegalArgumentException:

Exception in thread "Thread-2"
java.lang.IllegalArgumentException: URI is not hierarchical

我真的不知道为什么,但通过一些测试,我发现如果我改变了

file = new File(getClass().getResource("/file.txt").toURI());

to

file = new File(getClass().getResource("/folder/file.txt").toURI());

然后它反过来工作(它在jar中工作,但在eclipse中不工作)。

我正在使用Eclipse,文件所在的文件夹位于类文件夹中。


当前回答

由于某些原因,当我将web应用程序部署到WildFly 14时,classLoader.getResource()总是返回null。从getClass(). getclassloader()或Thread.currentThread(). getcontextclassloader()获取classLoader返回null。

getclassloader () API文档说,

"返回该类的类装入器。一些实现可能使用null来表示引导类装入器。如果该类是由引导类装入器装入的,则此方法在此类实现中将返回null。”

可能是如果你正在使用WildFly和你的web应用程序试试这个

request.getServletContext(). getresource()返回资源url。这里request是ServletRequest的一个对象。

其他回答

最后我解决了错误:

String input_path = "resources\\file.txt";
        
        input_path = input_path.replace("\\", "/");  // doesn't work with back slash
        
        URL file_url = getClass().getClassLoader().getResource(input_path);
        String file_path = new URI(file_url.toString().replace(" ","%20")).getSchemeSpecificPart();
        InputStream file_inputStream = file_url.openStream();

下面的代码使用Spring引导(kotlin):

val authReader = InputStreamReader(javaClass.getResourceAsStream("/file1.json"))

要访问jar中的文件,你有两个选择:

将文件放在与你的包名匹配的目录结构中(在提取.jar文件后,它应该与.class文件在同一个目录中),然后使用getClass().getResourceAsStream("file.txt")访问它 将文件放在根目录(在提取。jar文件后,它应该在根目录中),然后使用Thread.currentThread().getContextClassLoader().getResourceAsStream("file.txt")访问它

当jar作为插件使用时,第一个选项可能不起作用。

与其试图将资源定位为File,不如让ClassLoader通过getResourceAsStream为资源返回一个InputStream:

try (InputStream in = getClass().getResourceAsStream("/file.txt");
    BufferedReader reader = new BufferedReader(new InputStreamReader(in))) {
    // Use resource
}

只要file.txt资源在类路径上是可用的,那么无论file.txt资源是在classes/目录中还是在jar中,这种方法都会以同样的方式工作。

URI不是分层的,因为jar文件中资源的URI看起来像这样:file:/example.jar!/file.txt。您不能像读取普通的旧文件一样读取jar (zip文件)中的条目。

以下问题的答案很好地解释了这一点:

如何从Java jar文件中读取资源文件? Java Jar文件:使用资源错误:URI不是分层的

到目前为止(2017年12月),这是我发现的唯一一个在IDE内部和外部都可以工作的解决方案。

使用PathMatchingResourcePatternResolver

注意:它也适用于spring-boot

在这个例子中,我读取了src/main/resources/my_folder中的一些文件:

try {
    // Get all the files under this inner resource folder: my_folder
    String scannedPackage = "my_folder/*";
    PathMatchingResourcePatternResolver scanner = new PathMatchingResourcePatternResolver();
    Resource[] resources = scanner.getResources(scannedPackage);

    if (resources == null || resources.length == 0)
        log.warn("Warning: could not find any resources in this scanned package: " + scannedPackage);
    else {
        for (Resource resource : resources) {
            log.info(resource.getFilename());
            // Read the file content (I used BufferedReader, but there are other solutions for that):
            BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(resource.getInputStream()));
            String line = null;
            while ((line = bufferedReader.readLine()) != null) {
                // ...
                // ...                      
            }
            bufferedReader.close();
        }
    }
} catch (Exception e) {
    throw new Exception("Failed to read the resources folder: " + e.getMessage(), e);
}