我有一个CSV文件,第一行包含标题.所以我认为使用
Java 8流是完美的.
try (Stream<String> stream = Files.lines(csv_file) ){ stream.skip(1).forEach( line -> handleLine(line) ); } catch ( IOException ioe ){ handleError(ioe); }
是否可以获取第一个元素,分析它然后调用forEach方法?就像是
stream .forFirst( line -> handleFirst(line) ) .skip(1) .forEach( line -> handleLine(line) );
另外:
我的CSV文件包含大约1k行,我可以并行处理每一行以加快速度.除了第一行.我需要第一行来初始化项目中的其他对象:/
那么打开BufferedReader,读取第一行,关闭BufferedReader以及使用并行流可能是快速的吗?
解决方法
通常,您可以使用迭代器来执行此操作:
Stream<Item> stream = ... //initialize your stream Iterator<Item> i = stream.iterator(); handleFirst(i.next()); i.forEachRemaining(item -> handleRest(item));
在你的程序中,它看起来像这样:
try (Stream<String> stream = Files.lines(csv_file)){ Iterator<String> i = stream.iterator(); handleFirst(i.next()); i.forEachRemaining(s -> handleRest(s)); }