我想显示特定文件夹中的所有文件扩展名,并使用DirectoryStream
给出每个扩展名的总数。
现在,我只显示该文件夹中的所有文件,但是我如何只获取其扩展名呢? 我还应该获取这些文件的扩展名,并计算该文件夹中每个扩展名的总数(请参见下面的输出)。
public static void main (String [] args) throws IOException {
Path path = Paths.get(System.getProperty("user.dir"));
if (Files.isDirectory(path)){
DirectoryStream<Path> directoryStream = Files.newDirectoryStream(path);
for (Path p: directoryStream){
System.out.println(p.getFileName());
}
} else {
System.out.printf("Path was not found.");
}
}
输出应如下所示。 我想获得此输出的最佳方法是使用lambda?
FILETYPE TOTAL
------------------
CLASS | 5
TXT | 10
JAVA | 30
EXE | 27
答案 0 :(得分:4)
首先检查它是否是文件,如果是,则提取文件扩展名。最后,使用groupingBy
收集器获取所需的字典结构。看起来就是这样。
try (Stream<Path> stream = Files.list(Paths.get("path/to/your/file"))) {
Map<String, Long> fileExtCountMap = stream.filter(Files::isRegularFile)
.map(f -> f.getFileName().toString().toUpperCase())
.map(n -> n.substring(n.lastIndexOf(".") + 1))
.collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));
}
答案 1 :(得分:0)
您可以尝试以下操作:
public class FileCount {
public static void main(String[] args) throws IOException {
Path path = Paths.get(System.getProperty("user.dir"));
if (Files.isDirectory(path)) {
Map<String, Long> result = Files.list(path).filter(f -> f.toFile().isFile()).map(FileCount::getExtension)
.collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));
System.out.println(result);
} else {
System.out.printf("Path was not found.");
}
}
public static String getExtension(Path path) {
String parts[] = path.toString().split("\\.");
if (1 < parts.length) {
return parts[parts.length - 1];
}
return path.toString();
}
您甚至可以返回地图,并按所需方式排列结果。