java8 stream api 文件流甚是牛逼

public static void main(String[] args) {
        try {
            // 文件流甚是牛逼
            Stream<String> stream = Files.lines(Paths.get("pom.xml"));
            stream.forEach(System.out::println);

        } catch (IOException e) {
            e.printStackTrace();
        }

  }

 

posted @ 2019-07-12 08:47  huanglei2010  阅读(1241)  评论(0编辑  收藏  举报