在POI Apache Java中,要同时设置单元格的fontHeight为9和粗体,可以通过以下步骤实现:
Font font = workbook.createFont();
font.setFontHeightInPoints((short) 9);
font.setBold(true);
CellStyle cellStyle = workbook.createCellStyle();
cellStyle.setFont(font);
cell.setCellStyle(cellStyle);
完整的代码示例如下:
Workbook workbook = new HSSFWorkbook();
Sheet sheet = workbook.createSheet("Sheet1");
Row row = sheet.createRow(0);
Cell cell = row.createCell(0);
Font font = workbook.createFont();
font.setFontHeightInPoints((short) 9);
font.setBold(true);
CellStyle cellStyle = workbook.createCellStyle();
cellStyle.setFont(font);
cell.setCellStyle(cellStyle);
这样,你就同时设置了单元格的字号为9和粗体。
领取专属 10元无门槛券
手把手带您无忧上云