我正在使用Apache POI从excel文件中将数据读入2D数组。我认为我的错误在于我的数组代码,而不是POI元素。运行该方法后,我无法使用任何数组数据,它全部为空。
public class ExcelRead {
public static void main(String[] args) throws Exception {
File excel = new File ("C:/Users/user/Desktop/Files/Dashboards.xlsx");
FileInputStream fis = new FileInputStream(excel);
XSSFWorkbook wb = new XSSFWorkbook(fis);
XSSFSheet sheet = wb.getSheetAt(0);
int rowNum = sheet.getLastRowNum()+1;
int colNum = sheet.getRow(0).getLastCellNum();
String[][] data = new String[rowNum][colNum];
for (int i=0; i<rowNum; i++){
//get the row
XSSFRow row = sheet.getRow(i);
for (int j=0; j<colNum; j++){
//this gets the cell and sets it as blank if it's empty.
XSSFCell cell = row.getCell(j, Row.CREATE_NULL_AS_BLANK);
String value = String.valueOf(cell);
System.out.println("Value: " + value);
}
}
System.out.println("End Value: " + data[2][2]);
}
}
这是我的输出(对于阵列的任何单元格,结果是相同的,我只是使用[2] [2],因为我知道它应该有一个值。
Value: Project Name
Value: Dashboard URL
Value: To Email
Value: From Email
Value: Jira Login
Value: Password (same for )
Value: Image Location
Value: Run Automation
Value: Project1
Value: ProjectURL
Value: testemail@email.com
Value: QAAutomation@email.com
Value: QAAutomation
Value: QARocks#2
Value: test
Value: yes
Value: Project2
Value: https://projectURL
Value: testemail@email.com
Value: QAAutomation@email.com
Value: QAAutomation
Value: QARocks#2
Value: test
Value: yes
End Value: null
所以它正好读取数据。但是不存储数据,因为当我尝试调用单元格供以后使用时,它是空的。我的第一个输出(值:&#34;&#34;)是否每次都通过数组迭代打印结果?我不确定这是否有意义,但似乎它正在读取Excel文件,逐个吐出单元格,但不存储它们供我以后再使用。
答案 0 :(得分:3)
你只是循环浏览项目而不是将它们保存在数组中。
将其保存在数组中,您需要执行以下操作:
array[i][j] = value;
在你的情况下:
for (int i=0; i<rowNum; i++){
//get the row
XSSFRow row = sheet.getRow(i);
for (int j=0; j<colNum; j++){
//this gets the cell and sets it as blank if it's empty.
XSSFCell cell = row.getCell(j, Row.CREATE_NULL_AS_BLANK);
String value = String.valueOf(cell);
System.out.println("Value: " + value);
data[i][j] = value;
}
}
答案 1 :(得分:0)
因为数据数组不包含任何内容。从excel文件中读取时,您忘记在数组中添加该数据。如果未初始化,则字符串的默认值为null
。
考虑在data[i][j] = value;
之后添加System.out.println("Value: " + value);
。
您将获得所需的输出。