我遇到了您描述的确切问题,并且能够通过Cell
上面一些评论中建议的样式显式设置字体来获得一些成功(也在此处)。
然而,我注意到的一件事是它autoSizeColumn
仍然没有考虑所有单元格的宽度。特别是,我有一排单元格,它们基本上是描述每列数据的列标题。这些单元格已Font
成功应用自定义,但在运行时仍未考虑列宽autoSizeColumn
。存在差异,但我会假设它们无关紧要。例如,标题与列中的其余数据具有不同的单元格类型......并且单元格标题应用了不同的颜色以使它们脱颖而出。
话虽如此,尝试创建一个仅应用了一组非常基本的单元格样式的工作表,然后尝试从那里进行调整:
// Let's test with Arial, 10pt
Font testFont = workbook.createFont();
testFont.setFontName("Arial");
testFont.setFontHeightInPoints((short)10);
// We'll apply a very bare-bones style to our cells that just applies the Font
CellStyle testCellStyle = workbook.createCellStyle();
testCellStyle.setFont(testFont);
// Your real data cell creation would go here instead of my dummy code:
CreationHelper creationHelper = workbook.getCreationHelper();
Row testRow = thisSheet.createRow(0);
int currentColumn = 0;
Cell testCell = testRow.createCell(currentColumn++);
testCell.setCellStyle(testCellStyle);
testCell.setCellType(Cell.CELL_TYPE_STRING);
testCell.setCellValue(creationHelper.createRichTextString("Cell Data Goes Here");
testCell = testRow.createCell(currentColumn++);
testCell.setCellStyle(testCellStyle);
testCell.setCellType(Cell.CELL_TYPE_STRING);
testCell.setCellValue(creationHelper.createRichTextString("Your Real Code Won't Be This Redundant :)");
最后一个想法,如果autoSizeColumn
仍然对列宽做不幸或不一致的事情,您可以添加一个安全网以确保列不会小于默认值:
int origColWidth = thisSheet.getColumnWidth(currentColumn);
thisSheet.autoSizeColumn(currentColumn);
// Reset to original width if resized width is smaller than default/original
if (origColWidth > thisSheet.getColumnWidth(currentColumn))
thisSheet.setColumnWidth(currentColumn, origColWidth);