数据导出EXCEL

主要是使用poi这个包中的对象

POI提供API给Java程序对Microsoft Office格式档案读和写的功能。


下面是设置这个excel的样式及数据:

//把一张xls的数据表读到wb里

HSSFWorkbook wb = new HSSFWorkbook();
//读取第一页,一般一个excel文件会有三个工作表,这里获取第一个工作表来进行操作
HSSFSheet sheet = wb.createSheet("这是创建的第一张表");
HSSFRow row = sheet.createRow((int) 0);
// 设置字体   
HSSFFont headfont = wb.createFont();   
headfont.setFontName("黑体");   
headfont.setFontHeightInPoints((short) 22);// 字体大小   
headfont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);// 加粗   
   
HSSFCellStyle style = wb.createCellStyle();
style.setAlignment(HSSFCellStyle.ALIGN_CENTER);


HSSFCell cell = row.createCell((short) 0);
cell.setCellValue("列1");
cell = row.createCell((short) 1);
cell.setCellValue("列2");
cell = row.createCell((short) 2);
cell.setCellValue("列3");

for (int i = 0; i < listMap.size(); i++) {  // 这里一般遍历数据
row = sheet.createRow((int) i + 1);
row.createCell((short) 0).setCellValue(“列1的值,这里放数据”);
row.createCell((short) 1).setCellValue(“列2的值,这里放数据”);
row.createCell((short) 2).setCellValue(“列3的值,这里放数据”);

   }

// 写出
OutputStream os = response.getOutputStream();
wb.write(os);
os.close();
   
   

之前做过类似的需求,留个自己以后使用,也分享给大家,希望对你有帮助

你可能感兴趣的:(学习笔记)