DataFormatter formatcellvalue返回null

时间:2018-09-27 11:26:30

标签: apache-poi

formatCellValue方法应该返回一个空字符串。但是,下面的代码给了我NullPointerException

int r = (cell.getRowIndex()) + 1;
int c = cell.getColumnIndex();
String str = df.formatCellValue(sheet.getRow(r).getCell(c));

有人能解决这个问题吗?

0 个答案:

没有答案