A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© yangcy 中级黑马   /  2014-7-10 13:09  /  1056 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. import java.io.FileOutputStream;
  2. import java.io.IOException;
  3. import java.io.OutputStream;
  4. import java.util.List;
  5. import java.util.Map;

  6. import org.apache.poi.hssf.usermodel.HSSFCell;
  7. import org.apache.poi.hssf.usermodel.HSSFRichTextString;
  8. import org.apache.poi.hssf.usermodel.HSSFRow;
  9. import org.apache.poi.hssf.usermodel.HSSFSheet;
  10. import org.apache.poi.hssf.usermodel.HSSFWorkbook;

  11. public class ExportExcel {

  12.         private ExportExcel() {
  13.                 super();
  14.         }

  15.         public static void exportExcel(List<Object> list, Map<Integer, Long> map,
  16.                         String[] titles) throws IOException {
  17.                 // 创建Excel文档
  18.                 HSSFWorkbook hwb = new HSSFWorkbook();
  19.                 // sheet 对应一个工作页
  20.                 HSSFSheet sheet = hwb.createSheet("exportReport");
  21.                 int colNum = titles.length;
  22.                 // 创建第一行
  23.                 HSSFRow firstrow = sheet.createRow(0);
  24.                 HSSFCell[] firstcell = new HSSFCell[colNum];
  25.                 for (int col = 0; col < colNum; col++) {
  26.                         firstcell[col] = firstrow.createCell(col);
  27.                         firstcell[col].setCellValue(new HSSFRichTextString(titles[col]));
  28.                 }

  29.                 // 插入记录
  30.                 int rowNum = map.size();
  31.                 for (int i = 0; i < rowNum; i++) {
  32.                         // 从第二行开始
  33.                         HSSFRow row = sheet.createRow(i + 1);
  34.                         // 插入list中的字段
  35.                         for (int col = 0; col < colNum - 2; col++) {
  36.                                 HSSFCell cell = row.createCell(col);
  37.                                 cell.setCellValue(list.get(col).toString());
  38.                         }
  39.                         // 插入月份或日期
  40.                         row.createCell(colNum - 2).setCellValue(i + 1);
  41.                         // 插入总量
  42.                         row.createCell(colNum - 1).setCellValue(map.get(i + 1));
  43.                 }
  44.                 String fileName = titles[1].substring(0, 2);
  45.                 if (colNum == 4) {
  46.                         fileName += list.get(0) + "_" + list.get(1) + "年_年度报表";
  47.                 } else if (colNum == 5) {
  48.                         fileName += list.get(0) + "_" + list.get(1) + "年" + list.get(2)
  49.                                         + "月_月度报表";
  50.                 }
  51.                 // 创建文件输出流,准备输出电子表格
  52.                 OutputStream out = new FileOutputStream("../webapps/UsedMallMinaServer/files/"
  53.                                 + fileName + ".xls");
  54.                 hwb.write(out);
  55.                 out.close();
  56.         }
  57. }
复制代码


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马