Excel工具类之“参数汇总”

一、SXSSFWorkbook技术

1.冻结行数

代码

SXSSFWorkbook wb = new SXSSFWorkbook();
SXSSFSheet sheet = wb.createSheet(SheetName);
sheet.createFreezePane(0, 1);// 冻结

结果图

 

2.设置边框、字体格式

代码

/**
     * 创建文字、边框样式
     * 
     * @param wb
     * @return
     */
    private static CellStyle getNormalCellStyle(SXSSFWorkbook wb)
    {
        CellStyle style2 = wb.createCellStyle(); // 样式对象
        Font fontTitle = wb.createFont();
        fontTitle.setFontName("微软雅黑");// 字体样式
     fontTitle.setBold(true);//加粗 fontTitle.setFontHeightInPoints((
short) 10); style2.setFont(fontTitle); // 边框 style2.setFillForegroundColor(IndexedColors.BLACK.getIndex()); style2.setBorderBottom(BorderStyle.THIN); style2.setBottomBorderColor(IndexedColors.BLACK.getIndex()); style2.setBorderLeft(BorderStyle.THIN); style2.setLeftBorderColor(IndexedColors.BLACK.getIndex()); style2.setBorderRight(BorderStyle.THIN); style2.setRightBorderColor(IndexedColors.BLACK.getIndex()); style2.setBorderTop(BorderStyle.THIN); style2.setTopBorderColor(IndexedColors.BLACK.getIndex()); return style2; }

结果图

 

posted @ 2024-10-17 16:56  骚哥  阅读(13)  评论(0编辑  收藏  举报