有没有办法将流的结果转换为数组并循环访问数组元素?

我已经创建了一个递归运行的文件和文件夹的数量。我需要将 的结果转换为 并循环访问 .StreamStreamArrayArray


我在使用以下代码时遇到问题:


try (Stream<Path> stream = Files.walk(start, Integer.MAX_VALUE)) {

        List<String> collect = stream

            .stream().map(x->x.getName())

            .filter(s -> s.toString().endsWith(".txt"))

            .sorted()

            .collect(Collectors.toList())

            .toArray();


        collect.forEach(System.out::println);

    }


    String[] listfiles = new String[stream.length];

    for (int i = 0; i < stream.length; i++) {

       listfiles[i] = stream[].getName();

    }


Cats萌萌
浏览 67回答 1
1回答

12345678_0001

您发布的代码存在一些问题。您拨打stream.stream()该类没有方法。它使用这种方法是没有意义的,因为它已经是一个流。Streamstream()您拨打x.getName()此时,是一个没有方法的。可以使用 ,它返回一个 、 或 ,它将路径作为字符串返回,或者将两者组合在一起,仅将文件名作为字符串获取。xPathgetName()getFileName()PathtoString()将 分配给 的结果。List<String> collectCollection.toArray()该方法返回一个 .Object[]在调用 之前使用 。collect(Collectors.toList())toArray()该类有一个方法,如果数组是所需的最终结果,则没有理由首先收集到列表中。StreamtoArray()使用哪个返回(包括 for 和toArray()Object[]StreamCollection)你想要一个这意味着,由于不需要先收集,你需要调用流.toArray(国际功能)。String[]您在块外使用。streamtry由于是块的本地,因此不能在块外使用它。您也没有理由在块之外使用它,因为您只需要结果。streamtrytryString[]您尝试执行类似 执行的操作。stream[]A 不是数组,不能像数组一样访问。此外,a不是容器,而是管道;尝试访问其中的某些元素没有意义。StreamStream这也适用于 因为 没有字段(同样,因为它不是数组)。stream.lengthStreamlength解决这些问题,您的代码可能如下所示(基于代码的当前形式,因为我不确定您到底要做什么):String[]&nbsp;result;try&nbsp;(Stream<Path>&nbsp;stream&nbsp;=&nbsp;Files.walk(start,&nbsp;Integer.MAX_VALUE))&nbsp;{ &nbsp;&nbsp;&nbsp;&nbsp;result&nbsp;=&nbsp;stream.map(Path::toString) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.filter(s&nbsp;->&nbsp;s.endsWith(".txt")) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.sorted() &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;.toArray(String[]::new); }for&nbsp;(int&nbsp;i&nbsp;=&nbsp;0;&nbsp;i&nbsp;<&nbsp;result.length;&nbsp;i++)&nbsp;{&nbsp;&nbsp; &nbsp;&nbsp;//&nbsp;do&nbsp;something &nbsp;&nbsp;}您也可以考虑使用文件查找(路径,整数,双向预测,文件访问选项...)和/或路径垫。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java