Java导出基础 用POI导出Excel

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/xiaoxiaovbb/article/details/81317923

3、POI类导出Excel

 这种方式如果不是特定的环境下,还是不建议使用,因为这种方式所有的输出格式都是靠后台打出来的,如果格式有变动,则需要查看代码进行修改。

  • 首先、导入依赖

		<!-- poi -->
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi</artifactId>
			<version>3.10-FINAL</version>
		</dependency>
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-ooxml</artifactId>
			<version>3.10-FINAL</version>
		</dependency>
  • 第二、就是正常写个工具类生成一个固定格式的导出表,可以将list或是map数据作为参数放入到这个工具类中
public class ExcelUtil{ 
/**
     * 创建excel文档,
     * @param list 数据
     * @param keys listmap的设置列名
     * */
    public static Workbook createWorkBook(List<Map<String, Object>> listMap,List<?> list) {
            // 创建excel工作簿
            Workbook wb = new HSSFWorkbook();
            // 创建第一个sheet(页),并命名
            Sheet sheet = wb.createSheet("数据");
            // 手动设置列宽。第一个参数表示要为第几列设;,第二个参数表示列的宽度,n为列高的像素数。
           /* for(int i=0;i<keys.length;i++){
                sheet.setColumnWidth((short) i, (short) (35.7 * 150));
            }*/

            // 创建第一行
            Row row = sheet.createRow((short) 0);

            // 创建两种单元格格式
            CellStyle cs = wb.createCellStyle();
            CellStyle cs2 = wb.createCellStyle();

            // 创建两种字体
            Font f = wb.createFont();
            Font f2 = wb.createFont();

            // 创建第一种字体样式(用于列名)
            f.setFontHeightInPoints((short) 10);
            f.setColor(IndexedColors.BLACK.getIndex());
            f.setBoldweight(Font.BOLDWEIGHT_BOLD);

            // 创建第二种字体样式(用于值)
            f2.setFontHeightInPoints((short) 10);
            f2.setColor(IndexedColors.BLACK.getIndex());

//            Font f3=wb.createFont();
//            f3.setFontHeightInPoints((short) 10);
//            f3.setColor(IndexedColors.RED.getIndex());

            // 设置第一种单元格的样式(用于列名)
            cs.setFont(f);
            cs.setBorderLeft(CellStyle.BORDER_THIN);
            cs.setBorderRight(CellStyle.BORDER_THIN);
            cs.setBorderTop(CellStyle.BORDER_THIN);
            cs.setBorderBottom(CellStyle.BORDER_THIN);
            cs.setAlignment(CellStyle.ALIGN_CENTER);

            // 设置第二种单元格的样式(用于值)
            cs2.setFont(f2);
            cs2.setBorderLeft(CellStyle.BORDER_THIN);
            cs2.setBorderRight(CellStyle.BORDER_THIN);
            cs2.setBorderTop(CellStyle.BORDER_THIN);
            cs2.setBorderBottom(CellStyle.BORDER_THIN);
            cs2.setAlignment(CellStyle.ALIGN_CENTER);
			HSSFDataFormat hdf = (HSSFDataFormat)wb.createDataFormat();
			cs2.setDataFormat(hdf.getFormat("@"));
            
            List<Map<String, Object>> removeListMap = new ArrayList<Map<String, Object>>();
            for(int i=0;i<listMap.size();i++){
            	if(Boolean.parseBoolean(listMap.get(i).get("hide")+"")){
            		// listMap.remove(listMap.get(i));
            		removeListMap.add(listMap.get(i));
            	}
            }
            listMap.removeAll(removeListMap);
            
            //设置列名
            for(int i=0;i<listMap.size();i++){
                Cell cell = row.createCell(i);
                cell.setCellValue(listMap.get(i).get("name")+"");
                cell.setCellStyle(cs);
            }
            //设置每行每列的值
            for (int i = 0; i < list.size(); i++) {
                // Row 行,Cell 方格 , Row 和 Cell 都是从0开始计数的
                // 创建一行,在页sheet上
                Row row1 = sheet.createRow(i+1);
                // 在row行上创建一个方格

                for(int j=0;j<listMap.size();j++){
                    Cell cell = row1.createCell(j);
                    Map<String, Object> map =(Map<String, Object>) list.get(i);
                    cell.setCellValue(map.get(listMap.get(j).get("colkey")) == null?" ": map.get(listMap.get(j).get("colkey")).toString());
                    cell.setCellStyle(cs2);
                }
            }
            // 每列列宽自适应
			for (int i = 0; i < listMap.size(); i++) {
				sheet.autoSizeColumn(i);
			}
            return wb;    		

    }
}
  • 第三、将创建的Excel进行输出
	/**
	 * @param exportData 列表头
	 * @param lis 数据集
	 * @param fileName 文件名
	 * 
	 */
	public static void exportToExcel(HttpServletResponse response, List<Map<String, Object>> exportData, List<?> lis,
			String fileName) {
		BufferedInputStream bis = null;
		BufferedOutputStream bos = null;
		try {
			ByteArrayOutputStream os = new ByteArrayOutputStream();
			ExcelUtil.createWorkBook(exportData, lis).write(os);
			byte[] content = os.toByteArray();
			InputStream is = new ByteArrayInputStream(content);
			// 设置response参数,可以打开下载页面
			response.reset();
			response.setContentType("application/vnd.ms-excel;charset=utf-8");
			response.setHeader("Content-Disposition",
					"attachment;filename=" + new String((fileName + ".xls").getBytes(), "iso-8859-1"));
			ServletOutputStream out = response.getOutputStream();
			bis = new BufferedInputStream(is);
			bos = new BufferedOutputStream(out);
			byte[] buff = new byte[2048];
			int bytesRead;
			// Simple read/write loop.
			while (-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
				bos.write(buff, 0, bytesRead);
			}
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
				try {
					if (bis != null)
					bis.close();
					if (bos != null)
						bos.close();
				} catch (IOException e) {
				}
			
		}
	}

猜你喜欢

转载自blog.csdn.net/xiaoxiaovbb/article/details/81317923