从JAVA资源文件夹中获取文件夹

问题描述 投票:0回答:3

大家好,我无法解决这个问题:这行代码应该可以工作

File[] file = (new File(getClass().getResource("resources/images_resultats"))).listFiles();

我想要一个文件列表,这些文件位于“资源”下的“images_resultats”下。

java file src
3个回答
2
投票

如果

resources/images_resultats
不在类路径中和/或位于 jar 文件中,则它将不起作用。

你的代码应该是这样的:

File[] file = (new File(getClass().getResource("/my/path").toURI()))
                  .listFiles();

1
投票

您可以使用 FileSystem 类确定资源文件夹中的文件(即使它在 jar 中)。

public static void doSomethingWithResourcesFolder(String inResourcesPath) throws URISyntaxException {
    URI uri = ResourcesFolderUts.class.getResource(inResourcesPath).toURI();
    try( FileSystem fileSystem = FileSystems.newFileSystem(uri, Collections.emptyMap() ) ){
        Path folderRootPath = fileSystem.getPath(inResourcesPath);
        Stream<Path> walk = Files.walk(folderRootPath, 1);
        walk.forEach(childFileOrFolder -> {
            //do something with the childFileOrFolder
        });
    } catch (IOException e) {
        throw new RuntimeException(e);
    }
}

inResourcesPath 应该类似于

"/images_resultats"

请注意,childFileOrFolder 路径只能在文件系统保持打开状态时使用,如果您尝试(例如)返回路径然后稍后使用它们,您会收到文件系统关闭异常。

更改您自己的类之一的 ResourcesFolderUts


-3
投票

假设资源文件夹位于类路径中,这可能有效。

   String folder = getClass().getResource("images_resultats").getFile();
   File[] test = new File(folder).listFiles();
© www.soinside.com 2019 - 2024. All rights reserved.