简体   繁体   中英

cannot get a numerical value from the excel cell

public Object[][] dataProviderMethod() throws IOException {

    try {
        file = new FileInputStream(new File("/Users/nanthakumar/Documents/workspace/Myna_Admin/src/com/myna/testdata/login.xls"));
        workbook = new HSSFWorkbook(file);
        sheet = workbook.getSheetAt(0);
        row = sheet.getLastRowNum() + 1;
        col = sheet.getRow(0).getLastCellNum();
        data = new String[row][col];

        for (i = 0; i < row; i++) {
            rowvalue = sheet.getRow(i);
            for (j = 0; j < col; j++) {
                cellValue = rowvalue.getCell(j);
                data[i][j] = cellValue.getStringCellValue();
                System.out.println("The value is ----->" + data[i][j]);
            }

            workbook.close();
            file.close();
        }
    } catch (FileNotFoundException nana) {
        nana.printStackTrace();
    }



    return data;
}

This is my code and I tried to add the getnumericalCellvalue() instead of getStringCellValue() but that is not working for me.

首先,您必须在excel模板中检查列是数字还是文本。当且仅当列的类型为number时,您才能获取数值。因此更改模板excel并尝试

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM