欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Apache-POI-设置单元格背景色

程序员文章站 2022-06-08 15:06:32
...

Apache-POI-设置单元格背景色
版本:3.14

XSSFCell mobileCell = row.getCell(0);
XSSFCellStyle cellStyle = wb.createCellStyle();
cellStyle.setFillForegroundColor(IndexedColors.RED.getIndex());
cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
mobileCell.setCellStyle(cellStyle);