当前位置:  开发笔记 > 编程语言 > 正文

stream.forEach中的多行代码

如何解决《stream.forEach中的多行代码》经验,为你挑选了2个好方法。

我有以下代码来读取文件的行:

String fileName = "dataset/ANC-all-count.txt";
Integer i=0;
//read file into stream, try-with-resources
try (Stream stream = Files.lines(Paths.get(fileName), StandardCharsets.ISO_8859_1)) {

    stream.forEach(System.out::println);
    i++;

} catch (IOException e) {
    e.printStackTrace();
}
System.out.println("count is : "+i);

但问题是我需要放入i++以下行:

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

所以我想要这样的东西:

stream.forEach(System.out::println; i++);

但它不能以这种方式工作,所以任何人都可以帮助我如何使它工作?



1> Josh Chappel..:

forEach方法采用任何实现的类的实例Consumer.所以这是一个使用自定义Consumer实现来跟上计数的例子.以后你可以叫getCount()Consumer执行得到计数.

import java.util.ArrayList;
import java.util.List;
import java.util.function.Consumer;

public class ConsumerDemo {
    public static void main(String[] args) {
        List lines = new ArrayList();
        lines.add("line 1");
        lines.add("line 2");

        MyConsumer countingConsumer = new MyConsumer();
        lines.stream().forEach(countingConsumer);
        System.out.println("Count: " + countingConsumer.getCount());
    }

    private static class MyConsumer implements Consumer {
        private int count;

        @Override
        public void accept(String t) {
            System.out.println(t);
            count++;
        }

        public int getCount() {
            return count;
        }
    }
}



2> JB Nizet..:

使用peek()count():

i = (int) stream.peek(System.out::println) 
                .count();


+1但请注意,将来,`count()`将被优化,以便在spliterator报告SIZED特征时直接返回大小.因此,可以不执行"窥视"操作.当您从文件中获取流时可能不是这种情况,但使用此代码的某些人应该知道这一点.
我不建议使用`peek()`,根据JavaDoc`peek`存在主要是为了支持调试https://docs.oracle.com/javase/8/docs/api/java/util/stream/Stream.html# PEEK-java.util.function.Consumer-
推荐阅读
臭小子
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有