首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
getcell专题
【POI】getRow、getCell方法发生的NullPointerException
当excel中的行或单元格没有被用到的时候,get到的会是null 可以封装一个util类,get不到的时候就create public static XSSFCell getOrCreateCell(XSSFSheet sheet, int rowIndex, int colIndex) {XSSFRow row = sheet.getRow(rowIndex);if (row ==
阅读更多...