作者:茗瑜42_330 | 来源:互联网 | 2023-08-30 23:34
想对Excel中某些cell值加粗显示,使用的是最新的Apache poi jar包
1 2 3 4 5
|
org.apache.poi
poi-ooxml
3.17
|
使用了下面的方法不起作用
1 2 3 4 5
| XSSFCellStyle cellStyle = wb.createCellStyle();
XSSFFont fOnt= wb.createFont();
font.setBold(true);
cellStyle.setFont(font);
cell.setCellStyle(cellStyle); |
并且bold默认就为true
1
| set a boolean value for the boldness to use. If omitted, the default value is true. |
所以怎么才能加粗显示呢?