我正在尝试读取一个 csv 文件并将其数据复制到一个数组中。我似乎无法让它以这种方式工作,我不知道为什么。
String[] row = new String[0];
ArrayList<String[]> csv = new ArrayList<>();
String parser = "SPImages";
CSVReader reader = new CSVReader(new FileReader("C://data.csv"));
String[] nextLine;
while ((nextLine = reader.readNext()) != null){
System.arraycopy(nextLine, 0, row, 0, nextLine.length);
}