标签: apache-poi
formatCellValue方法应该返回一个空字符串。但是,下面的代码给了我NullPointerException。
formatCellValue
NullPointerException
int r = (cell.getRowIndex()) + 1; int c = cell.getColumnIndex(); String str = df.formatCellValue(sheet.getRow(r).getCell(c));
有人能解决这个问题吗?