java—从路径读取文件夹中的文件

23c0lvtd  于 2021-07-13  发布在  Java
关注(0)|答案(4)|浏览(354)

我需要读取文件夹中的所有文件。这是我的路径c:/records/today/路径中有两个文件data1.txt和data2.txt。得到文件后,我需要读取并显示它。我已经做了第一个文件,我只是不知道如何做到这两个。

File file = ResourceUtils.getFile("c:/records/today/data1.txt");        
String content = new String(Files.readAllBytes(file.toPath()));
System.out.println(content);
6yoyoihd

6yoyoihd1#

此外,您还可以使用它来检查文件或目录的子路径

Arrays.stream(ResourceUtils.getFile("c:/records/today/data1.txt").listFiles())
            .filter(File::isFile)
            .forEach(file -> {
                try {
                    String content = new String(Files.readAllBytes(file.toPath()));
                    System.out.println(content);
                } catch (IOException e) {
                    e.printStackTrace();
                }
            });
mzillmmw

mzillmmw2#

请试一下

File file = ResourceUtils.getFile("c:\\records\\today\\data1.txt");

看到了吗https://docs.oracle.com/javase/tutorial/essential/io/pathops.html

lsmepo6l

lsmepo6l3#

要读取特定文件夹中的所有文件,可以执行以下操作:

File dir = new File("c:/records/today");      
for (File singleFile: dir.listFiles()) {
    // do file operation on singleFile
}
cclgggtu

cclgggtu4#

您可以稍微更改代码,而不是使用resources.getfile使用files.walk返回文件流并对其进行迭代。

Files.walk(Paths.get("c:\\records\\today\)).forEach(x->{
        try {
            if (!Files.isDirectory(x))
            System.out.println(Files.readAllLines(x));
            //Add internal folder handling if needed with else clause
        } catch (IOException e) {
            //Add some exception handling as required
            e.printStackTrace();
        }
    });

相关问题