Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error creating cell with POI

I do an export from Java to xls, i use POI library.

My createCell Method:

private Cell createCell(Row ligne, int col, String value, CellStyle style, HSSFWorkbook classeur) {        
    //org.apache.poi.hssf.usermodel.HSSFOptimiser.optimiseCellStyles(classeur);
    CellStyle styleCell = classeur.createCellStyle();
    styleCell.cloneStyleFrom(style);
    return createCell(ligne, col, value, styleCell);
}


protected Cell createCell(Row ligne, int col, String value, CellStyle style) {
    Cell cell = createCell(ligne, col, value);
    cell.setCellStyle(style);
    return cell;
}

i call this methods in a For, i have this message error:

Echec de l'export: The maximum number of cell styles was exceeded. You can define up to 4000 styles in a .xls workbook

How to reuse my cell without having to recreate each iteration ?

Thx

like image 615
Mercer Avatar asked Nov 22 '13 11:11

Mercer


1 Answers

You can not re-use the same cell for multiple rows. Instead, apply same values to a newly created cell. But you can use the same style to multiple cells.

CellStyle cellStyle = workSheet.getWorkbook().createCellStyle();
cellStyle.setAlignment(CellStyle.ALIGN_CENTER);
cellStyle.setWrapText(true);

for (int i = 0; i <= records.size(); i++) {
    // Create a new row
    Row row = workSheet.createRow((short) i);
    Cell cell001 = row.createCell(columnIndex);
    cell001.setCellValue("some value");
    cell001.setCellStyle(cellStyle);
}
like image 148
Md Ismail Avatar answered Nov 20 '22 07:11

Md Ismail