如何在Java中将.csv文件读取到数组列表中?

如何在Java中将.csv文件读取到数组列表中?,第1张

如何在Java中将.csv文件读取到数组列表中?

您不需要

2D
数组来存储文件内容,可以使用String []数组列表,例如:

public List<String[]> readData() throws IOException {     int count = 0;    String file = "bank-Detail.txt";    List<String[]> content = new ArrayList<>();    try(BufferedReader br = new BufferedReader(new FileReader(file))) {        String line = "";        while ((line = br.readLine()) != null) { content.add(line.split(","));        }    } catch (FileNotFoundException e) {      //Some error logging    }    return content;}

同样,在您的情况下,最好在

list
本地声明并从中返回它,
method
而不是将元素添加到共享
list
(“ bank”)中。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5561750.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存