现在poi的版本已经更新到了4.0,在给Excel单元格填充背景色的时候,发现以前版本3的用法不支持了,最后费了好大劲才找到新的处理方式,直接看代码:
XSSFCellStyle style1 = wb.createCellStyle(); style1.setFillForegroundColor(IndexedColors.YELLOW.getIndex()); style1.setFillPattern(FillPatternType.SOLID_FOREGROUND); cell.setCellStyle(style1); 中间的两行必须有,颜色可以随便调
来源:51CTO
作者:weixin_42209881
链接:https://blog.csdn.net/weixin_42209881/article/details/100141086