我试图使用POI将我的primefaces数据表导出到.xlxs。但是当我尝试这样做时,控制台中会显示错误:Illegal cell type
。我已经导入了所有需要的库,并将所有.jar文件放在我的类路径中。
这是我的代码:
for (int c = 0; c < _col_cnt; c++) {
//Construct the header row
String _h = HeadersLabel[c];
XSSFRow row = s.createRow((short)c);
if (_h != null) {
// Label label = new Label(c, 2, _h); //
XSSFCell title = row.createCell((short)c,2);
title.setCellValue(_h);
}
我面临的错误是
java.lang.IllegalArgumentException: Illegal cell type: 6
org.apache.poi.xssf.usermodel.XSSFCell.setCellType(XSSFCell.java:769)
org.apache.poi.xssf.usermodel.XSSFRow.createCell(XSSFRow.java:177)
由于