如何从列中获取List列表而不是列表数组?

我希望得到列表,而不是数组列表的一个列表,下面的代码:如何从列中获取List列表而不是列表数组?

List<String[]> list = org.simpleflatmapper.csv.CsvParser.reader(in).stream().collect(Collectors.toList()); 

我们怎样才能得到List<List<String>> list = ...?

回答:

你需要映射的String []列出

List<List<String>> list = org.simpleflatmapper.csv.CsvParser.reader(in).stream() 

.map(Arrays::asList)

.collect(Collectors.toList());

回答:

org.simpleflatmapper.csv.CsvParser.reader(in).stream() 

.map(Arrays::asList)

.collect(Collectors.toList());

以上是 如何从列中获取List列表而不是列表数组? 的全部内容, 来源链接: utcz.com/qa/263435.html

回到顶部