【java】+对excel进行操作_2_pol
2021-01-23 04:14
标签:tps mic 背景色 ref pattern 行操作 class sheet blog https://blog.csdn.net/qq_24076135/article/details/77449898 原理:设置一个模板 然后要设置背景色的单元格来调用模板即可 模板代码 【java】+对excel进行操作_2_pol 标签:tps mic 背景色 ref pattern 行操作 class sheet blog 原文地址:https://www.cnblogs.com/danhuai/p/12885681.html1、冻结首行
sheet.createFreezePane(0,1,0,1);
2、设置单元格背景色
// 设置单元格填充颜色(模板)
XSSFWorkbook wb = new XSSFWorkbook();
XSSFCellStyle cellStyle = wb.createCellStyle();
cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND); // 设置填充方案(背景填充)
cellStyle.setFillForegroundColor(new XSSFColor(new Color(155,194,230))); // 设置填充颜色(淡蓝色)
// 具体的单元格调用模板
文章标题:【java】+对excel进行操作_2_pol
文章链接:http://soscw.com/index.php/essay/45737.html