出現這種問題可能多種原因,下面是舉例說明
POI版本為3.8;
jar包匯入之後XSSFWorkbook可以正常使用了,但出現了The import org.apache.poi.ss.usermodel.CellType cannot be resolved
程式碼中
cellRowName.setCellType(CellType.STRING); // 設定單元格值的型別
style.setAlignment(HorizontalAlignment.CENTER); // 設定水平對齊的樣式為居中對齊;
報錯,原來是程式碼所用POI版本低的緣故;
高版本的import org.apache.poi.ss.usermodel.CellType變為了import org.apache.poi.ss.usermodel.Cell;
同時cellRowName.setCellType(CellType.STRING);變為了cellRowName.setCellType(Cell.CELL_TYPE_STRING);
出現這種問題可能多種原因,下面是舉例說明
POI版本為3.8;
jar包匯入之後XSSFWorkbook可以正常使用了,但出現了The import org.apache.poi.ss.usermodel.CellType cannot be resolved
程式碼中
cellRowName.setCellType(CellType.STRING); // 設定單元格值的型別
style.setAlignment(HorizontalAlignment.CENTER); // 設定水平對齊的樣式為居中對齊;
報錯,原來是程式碼所用POI版本低的緣故;
高版本的import org.apache.poi.ss.usermodel.CellType變為了import org.apache.poi.ss.usermodel.Cell;
同時cellRowName.setCellType(CellType.STRING);變為了cellRowName.setCellType(Cell.CELL_TYPE_STRING);