我有一个二维 ArrayList,它在 while 循环中填充了字符串值。这些值来自使用读取的 CSV 文件,BufferedReader
然后使用StringTokenizer
. 1D ArrayList 在 while 循环中添加到 2D ArrayList。
我的问题是我无法在 while 循环之外访问 2D 数组的元素。从以下代码可以看出:
public String[][] readInCSV(String mg) {
List<List<String>> twoDim = new ArrayList<List<String>>();
List<String> row = new ArrayList<String>();
try {
BufferedReader CSVFile = new BufferedReader(new FileReader("C:\\minuteTest.csv"));
String dataRow="";
int y=0;
while ((dataRow = CSVFile.readLine()) != null) {
StringTokenizer st = new StringTokenizer(dataRow, ",");
while(st.hasMoreTokens()){
row.add(st.nextToken());
}
System.out.println("row: " + row.get(2));
twoDim.add(row);
System.out.println("twoDimTest: " + twoDim.get(y).get(2) + " y: " + y);
row.clear();
y++;
}
for(int x=0; x<twoDim.size(); x++){
System.out.println("twoDim: " + twoDim.get(x).size());
}
CSVFile.close();
}
catch (FileNotFoundException e1) {
System.out.println("file not found: " + e1.getMessage());
}
catch (IOException e1) {
System.out.println("could not read file: " + e1.getMessage());
}
return strArray;
}
"twoDimTest" 准确地打印出 "row" 在 while 循环中所做的事情,但 "twoDim" 在 for 循环中打印出 0。如果我尝试:
twoDim.get(0).get(2);
它返回一个 IndexOutOfBoundsException。如果我尝试:
twoDim.size();
它返回正确的行数。
为什么我的二维数组的行填充在 while 循环中,而不是在 while 循环之外?
如何在 while 循环之外访问我的二维数组?