标签:tps mic 背景色 ref pattern 行操作 class sheet blog
https://blog.csdn.net/qq_24076135/article/details/77449898
sheet.createFreezePane(0,1,0,1);
原理:设置一个模板 然后要设置背景色的单元格来调用模板即可
模板代码
// 设置单元格填充颜色(模板) XSSFWorkbook wb = new XSSFWorkbook(); XSSFCellStyle cellStyle = wb.createCellStyle(); cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND); // 设置填充方案(背景填充) cellStyle.setFillForegroundColor(new XSSFColor(new Color(155,194,230))); // 设置填充颜色(淡蓝色) // 具体的单元格调用模板
标签:tps mic 背景色 ref pattern 行操作 class sheet blog
原文地址:https://www.cnblogs.com/danhuai/p/12885681.html