如何使用Java Apache POI使用“Not Available”一词填写excel文件中的所有空白单元格?
我使用了以下代码,但它仅适用于某些列,我无法弄清楚是什么原因?确切地说,从它的第1000行开始。 (我有一份非常大的excel文件)
XSSFRow r1;
for(Row r : firstSheet)
{
r1=(XSSFRow) r;
for (Cell cell : r) {
if(cell == null || cell.getCellType() == Cell.CELL_TYPE_BLANK)
{
XSSFCell cell2 = r1.createCell(cell.getColumnIndex());
cell.setCellValue("Not Available");
}
}
}
答案 0 :(得分:0)
没有你的代码,很难搞清楚。示例代码
CellReference cr = new CellReference(entry.getKey());
int r = cr.getRow();
int c = cr.getCol();
Row row = sheet.getRow(r);
if (row == null)
row = sheet.createRow(r);
Cell cell = row.getCell(c, Row.CREATE_NULL_AS_BLANK);
cell.setCellValue("Not Available");