easyExcel实战:(五)写Excel设置excel的样式

一、主要是设置Excel的字体大小和颜色,目前还不支持单元格内容居中和自动适应宽度

             //定义Excel正文背景颜色
            TableStyle tableStyle=new TableStyle();
            tableStyle.setTableContentBackGroundColor(IndexedColors.WHITE);

            //定义Excel正文字体大小
            Font font=new Font();
            font.setFontHeightInPoints((short) 10);

            tableStyle.setTableContentFont(font);

            Table table=new Table(0);
            table.setTableStyle(tableStyle);

            EasyExcelUtil.writeExcelWithStringList(outputStream,stringLists,table,ExcelTypeEnum.XLSX);
 

你可能感兴趣的:(工具类)