开发者

XSSF Apache POI

开发者 https://www.devze.com 2023-03-16 10:53 出处:网络
I used the below for setting default column style in XSSF sheet? but this is not workingcan anyone suggest the bug fix.

I used the below for setting default column style in XSSF sheet? but this is not working can anyone suggest the bug fix.

format = workbook.createDataFormat();
style = workbook.createCellStyle();
style.setDataFormat(fo开发者_C百科rmat.getFormat("@"));
sheet.setDefaultColumnStyle(1, style); 


As of POI 4.1.0 it is working with SXSSF, but with a caveat. The default column style only defines which style will be applied when users enter data into empty cells in the sheet created by POI. If you create cells and enter data through POI, the default format does not apply, you have to use setCellStyle(CellStyle).

E.g. for text styles:

private CellStyle createTextFormat(SXSSFWorkbook workbook) {
    DataFormat fmt = workbook.createDataFormat();
    CellStyle textStyle = workbook.createCellStyle();
    textStyle.setDataFormat(fmt.getFormat("@"));
    return textStyle;
}

// then do both:
int columnIndex = 0;
sheet.setDefaultColumnStyle(columnIndex, textFormat)

SXSSFCell cell = row.createCell(0);
cell.setCellStyle(textFormat);
cell.setCellValue("0100");


Probably this bug is causing you headaches. Trying your code with Apache POI 3.7 I get the added effect that the second column gets hidden (width = 0) and the format is not applied.

Cheers, Wim

PS Note that I talk about the second column, which is what your code is really referring to; if you wanted to apply the style to the first column you should have used 0 (zero-based).


Try this it will work:

       style.setDataFormat(HSSFDataFormat.getBuiltinFormat("@"));
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号