Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sheet.setColumnWidth(13,(short)0);完全不同
sheet.setColumnWidth(13,(short)0);
row.removeCell(13);也不行。
row.removeCell(13);
我应该为这个目标使用什么?(删除单元格)
如果要清除单元格的数据:
选项 1:将单元格的值设置为null. 此选项的优点是您不需要获取该单元格的单元格样式、对齐方式、字体样式等。
null
row.getCell(13).setCellValue(null); Cell cell13 = cell.getCell(13);
选项 2:删除单元格。当你cell13再次服用时,它会返回null。这就是为什么您需要创建单元格以及样式。
cell13
row.removeCell(13); Cell cell13 = cell.getCell(13);