当前位置: 代码迷 >> 综合 >> EasyExcel,POI 等处理excel相关方法记录笔记。
  详细解决方案

EasyExcel,POI 等处理excel相关方法记录笔记。

热度:64   发布时间:2024-01-22 03:48:19.0

确定excel类型的:

HSSFWorkbook wb = new HSSFWorkbook(); //创建HSSFWorkbook 对象
HSSFSheet sheet = wb.createSheet("new sheet"); //创建一个新的excel表格
//遍历新创建的excel表格
for(Iterator rit=sheet.rowIterator();rit.hasNext();){  
    HSSFRow row = (HSSFRow)rit.next();  //获取每excel的每一行

//  row.setHeight((short) (25 * 20))
//  row.setHeightInPoints(20)   heightInPoints 设置的值是height属性值的20倍

    for(Iterator cit = row.cellIterator();cit.hasNext();){  //遍历每一行
    HSSFCell cell = (HSSFCell)cit.next();  //获取行中的每一个单元格
    cell.setCellValue("hello");  //给每一行中设置“hello” 内容
    }  
}

下面陈列EXCEL表格样式相关的内容:

HSSFCellStyle cellStyle = wb.createCellStyle();  //创建设置EXCEL表格样式对象 cellStyle
 一、设置背景色:
cellStyle.setFillForegroundColor((short) 13);// 设置背景色
cellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);

具体颜色可以参照:http://blog.csdn.net/qq_27937043/article/details/72779442


二、设置边框:
cellStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); //下边框  
cellStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左边框  
cellStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框  

cellStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框


三、设置居中:
cellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 水平居中  
cellStyle.setAlignment(HSSFCellStyle.VERTICAL_CENTER);//垂直居中  
cellStyle.setAlignment(HSSFCellStyle.VERTICAL_BOTTOM);//垂直底部  
cellStyle.setAlignment(HSSFCellStyle.VERTICAL_TOP);//垂直顶部

四、设置字体:
HSSFFont font = wb.createFont();  
font.setFontName("黑体");  
font.setFontHeightInPoints((short) 16);//设置字体大小   

font2.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);//粗体显示  

cellStyle.setFont(font);//选择创建的字体格式


五、设置列宽:
sheet.setColumnWidth(0, 3766);

//第一个参数代表列id(从0开始),第2个参数代表宽度值  参考 :"2017-06-01"的宽度为2500


六、设置自动换行:

cellStyle.setWrapText(true);//设置自动换行


七、合并单元格:
方法1. 此方法在POI3.8中已经被废弃,建议使用方法2
Region region1 = new Region(0, (short) 0, 0, (short) 6);//参数1:行号 参数2:起始列号 参数3:行号 参数4:终止列号  
方法2
CellRangeAddress region1 = new CellRangeAddress(rowNumber, rowNumber, (short) 0, (short) 11);   
//参数1:起始行 参数2:终止行 参数3:起始列 参数4:终止列    
但应注意两个构造方法的参数不是一样的,具体使用哪个取决于POI的不同版本。

sheet.addMergedRegion(region1);

 

常用方法记录:

public static void setWorkbookStyle(Workbook workbook,int columnLength){try {//第一个sheetSheet sheet = workbook.getSheetAt(0);//设置列宽for (int i = 0; i < columnLength; i++) {sheet.setColumnWidth((short)i,65 * 256 + 200);}//设置第一行格式Row row = sheet.getRow(0);row.setHeight((short) (30 * 20));CellStyle style = workbook.createCellStyle();style.setFillPattern(FillPatternType.BRICKS);style.setFillForegroundColor(IndexedColors.RED.getIndex());// 设置背景色style.setFillPattern(FillPatternType.SOLID_FOREGROUND);style.setBorderBottom(BorderStyle.THIN); //下边框style.setBorderLeft(BorderStyle.THIN);//左边框style.setBorderTop(BorderStyle.THIN);//上边框style.setBorderRight(BorderStyle.THIN);//右边框style.setAlignment(HorizontalAlignment.CENTER); // 水平居中style.setVerticalAlignment(VerticalAlignment.CENTER);//垂直居中Font font = workbook.createFont();font.setFontName("黑体");font.setFontHeightInPoints((short) 22);//设置字体大小font.setBold(true);style.setFont(font);//遍历每一行的cellfor(Iterator cit = row.cellIterator(); cit.hasNext();){Cell cell = (Cell)cit.next();cell.setCellStyle(style);}workbook.setActiveSheet(0);}catch (Exception e){log.error("---设置excel格式错误!");}}
    /*** @description Workbook 转 InputStream 流* @author sgl*/public static InputStream workbookConvertorStream(Workbook workbook) {InputStream in = null;try{//临时缓冲区ByteArrayOutputStream out = new ByteArrayOutputStream();//创建临时文件workbook.write(out);byte [] bookByteAry = out.toByteArray();in = new ByteArrayInputStream(bookByteAry);}catch (Exception e){log.error("转换错误");}return in;}
    /*** @description InputStream流 转 二进制数组* @author sgl*/public static byte [] inputStreamToByte(InputStream is) throws IOException {ByteArrayOutputStream bAOutputStream = new ByteArrayOutputStream();int ch;while((ch = is.read() ) != -1){bAOutputStream.write(ch);}byte data [] =bAOutputStream.toByteArray();bAOutputStream.close();return data;}

 

  相关解决方案