【java】+对excel进行操作_2_pol

2021-01-23 04:14

阅读:787

标签:tps   mic   背景色   ref   pattern   行操作   class   sheet   blog   

1、冻结首行

https://blog.csdn.net/qq_24076135/article/details/77449898

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

标签:tps   mic   背景色   ref   pattern   行操作   class   sheet   blog   

原文地址:https://www.cnblogs.com/danhuai/p/12885681.html


评论


亲,登录后才可以留言!