更好的方案:大excel文件处理,为了避免内存oom,建议使用阿里开源的easyexcel。或者使用CSV文件处理 一、POI控制某列只显示文本 解决问题:身份证号在输入模版文件中显示为科学计数法XSSFCellStyle textColumnStyle = workbook.createCellStyle(); XSSFDataFormat dataFormat = workbook.createDataFormat(); textColumnStyle.setDataFormat(dataFormat.getFormat("@"));//单元格内容不会以科学计数法显示
#设置列默认格式 sheet.setDefaultColumnStyle(textColumnStyle);
二、设置单元格字体和背景
private XSSFCellStyle makeHeaderCellStyle(XSSFWorkbook workbook) {
XSSFCellStyle headerCellStyle = workbook.createCellStyle();
XSSFFont font = workbook.createFont();
font.setBold(true);
font.setFontName("微软雅黑");
font.setColor(IndexedColors.WHITE.index);
XSSFColor xssfColor = new XSSFColor(new DefaultIndexedColorMap());
xssfColor.setRGB(new byte[]{(byte) 0,(byte)106,(byte)199});
headerCellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
//headerCellStyle.setFillBackgroundColor(xssfColor); // SOLID_FOREGROUND时,不能用背景色,否则为黑底
headerCellStyle.setFillForegroundColor(xssfColor);// 用前景色!!!
headerCellStyle.setFont(font);
return headerCellStyle;
}
三、设置宽度
设置自动调节的宽度
if (sheet instanceof SXSSFSheet) {
((SXSSFSheet) sheet).trackAllColumnsForAutoSizing();
for (int i = 0; i < colSize; ++i) {
sheet.autoSizeColumn(i);
}
}
设置固定宽度,解决多行且空值多情况下输出过“挤”问题
if (sheet instanceof SXSSFSheet) {
for (int i = 0; i < colSize; ++i) {
sheet.setColumnWidth(i,20 * 256);
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/9931.html