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; }
结果图
* 博客文章部分截图及内容来自于学习的书本及相应培训课程,仅做学习讨论之用,不做商业用途。
* 如有侵权,马上联系我,我立马删除对应链接。
* 备注:王子威
* 我的网易邮箱:wzw_1314_520@163.com