2019-09-20 java导出多个sheet的Excel表

直接看代码:

@SuppressWarnings("unchecked")
    @RequestMapping(value = "/compRoomExport")
    @ResponseBody
    public void export( HttpSession session, HttpServletResponse response,
                        @RequestParam(value = "compRoomNames", required = true) String compRoomNames,
                        @RequestParam(value = "examCentreIds", required = true) String examCentreIds,
                        @RequestParam(value = "compRoomIds", required = true) String compRoomIds) {
        EmSessionInfo sessionInfo = (EmSessionInfo) session.getAttribute(ConfigUtil.getSessionInfoName());

        String [] compRoomNamesArr  = compRoomNames.split(",");
        String [] examCentreIdsArr = examCentreIds.split(",");
        String [] compRoomIdsArr = compRoomIds.split(",");
        String fileName = "机房考机信息表";
        OutputStream out = null;

        // 产生工作簿对象
        HSSFWorkbook workbook = new HSSFWorkbook();
        int a = compRoomNamesArr.length;
        for(int i = 0 ; i<compRoomNamesArr.length ; i++){
            String compRoomName = compRoomNamesArr[i];
            Long examCentreId = Long.parseLong(examCentreIdsArr[i]);
            Long compRoomId = Long.parseLong(compRoomIdsArr[i]);
            try {
                // 进行转码,使其支持中文文件名
                //   fileName = java.net.URLEncoder.encode( fileName, );
                response.setCharacterEncoding("UTF-8");
                response.setContentType("application/msexcel");
                response.setHeader("content-disposition", "attachment;filename=" + fileName + ".xls");

                // 产生工作表对象
                HSSFSheet sheet = workbook.createSheet(compRoomName);
                // 设置字体
                HSSFFont headfont = workbook.createFont();
                headfont.setFontName("黑体");
                headfont.setFontHeightInPoints((short) 22);// 字体大小
                headfont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);// 加粗
                // 另一个样式
                HSSFCellStyle headstyle = workbook.createCellStyle();
                headstyle.setFont(headfont);
                headstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 左右居中
                headstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 上下居中
                headstyle.setLocked(true);
                headstyle.setWrapText(true);// 自动换行
                // 另一个字体样式
                HSSFFont columnHeadFont = workbook.createFont();
                columnHeadFont.setFontName("宋体");
                columnHeadFont.setFontHeightInPoints((short) 10);
                columnHeadFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);

                // 列头的样式
                HSSFCellStyle columnHeadStyle = workbook.createCellStyle();
                columnHeadStyle.setFont(columnHeadFont);
                columnHeadStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 左右居中
                columnHeadStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 上下居中
                columnHeadStyle.setLocked(true);
                columnHeadStyle.setWrapText(true);
                columnHeadStyle.setLeftBorderColor(HSSFColor.BLACK.index);// 左边框的颜色
                columnHeadStyle.setBorderLeft((short) 1);// 边框的大小
                columnHeadStyle.setRightBorderColor(HSSFColor.BLACK.index);// 右边框的颜色
                columnHeadStyle.setBorderRight((short) 1);// 边框的大小
                columnHeadStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 设置单元格的边框为粗体
                columnHeadStyle.setBottomBorderColor(HSSFColor.BLACK.index); // 设置单元格的边框颜色
                // 设置单元格的背景颜色(单元格的样式会覆盖列或行的样式)
                // 前景色的设定
                columnHeadStyle.setFillForegroundColor(HSSFColor.WHITE.index);
                // 背景色的设定
                columnHeadStyle.setFillBackgroundColor(HSSFColor.SKY_BLUE.index);
                // 填充模式
                columnHeadStyle.setFillPattern(HSSFCellStyle.FINE_DOTS);

                HSSFFont font = workbook.createFont();
                font.setFontName("宋体");
                font.setFontHeightInPoints((short) 10);
                // 普通单元格样式
                HSSFCellStyle style = workbook.createCellStyle();
                style.setFont(font);
                style.setAlignment(HSSFCellStyle.ALIGN_LEFT);// 左右居中
                style.setVerticalAlignment(HSSFCellStyle.VERTICAL_TOP);// 上下居中
                style.setWrapText(true);
                style.setLeftBorderColor(HSSFColor.BLACK.index);
                style.setBorderLeft((short) 1);
                style.setRightBorderColor(HSSFColor.BLACK.index);
                style.setBorderRight((short) 1);
                style.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 设置单元格的边框为粗体
                style.setBottomBorderColor(HSSFColor.BLACK.index); // 设置单元格的边框颜色.
                style.setFillForegroundColor(HSSFColor.WHITE.index);// 设置单元格的背景颜色.
                // 另一个样式
                HSSFCellStyle centerstyle = workbook.createCellStyle();
                centerstyle.setFont(font);
                centerstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 左右居中
                centerstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 上下居中
                centerstyle.setWrapText(true);
                centerstyle.setLeftBorderColor(HSSFColor.BLACK.index);
                centerstyle.setBorderLeft((short) 1);
                centerstyle.setRightBorderColor(HSSFColor.BLACK.index);
                centerstyle.setBorderRight((short) 1);
                centerstyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); // 设置单元格的边框为粗体
                centerstyle.setBottomBorderColor(HSSFColor.BLACK.index); // 设置单元格的边框颜色.
                centerstyle.setFillForegroundColor(HSSFColor.WHITE.index);// 设置单元格的背景颜色
                // 创建第一行
                HSSFRow row0 = sheet.createRow(0);
                // 设置行高
                row0.setHeight((short) 500);
                // 创建第一列
                HSSFCell cell0 = row0.createCell(0);
                cell0.setCellValue(new HSSFRichTextString(fileName));
                cell0.setCellStyle(headstyle);

                // 设置sheet页列宽 *

                /* *
                 * 合并单元格 第一个参数:第一个单元格的行数(从0开始) 第二个参数:第二个单元格的行数(从0开始)
                 * 第三个参数:第一个单元格的列数(从0开始) 第四个参数:第二个单元格的列数(从0开始)*/

                CellRangeAddress range = new CellRangeAddress(0, 0, 0, 4);
                sheet.addMergedRegion(range);

                // 创建第二行
                HSSFRow row1 = sheet.createRow(1);

                HSSFCell cell10 = row1.createCell(0);
                cell10.setCellValue(new HSSFRichTextString("机房名称:"));
                cell10.setCellStyle(centerstyle);

                HSSFCell cell11 = row1.createCell(1);
                cell11.setCellValue(new HSSFRichTextString(compRoomName));
                cell11.setCellStyle(centerstyle);

                HSSFCell cell12 = row1.createCell(2);
                cell12.setCellStyle(centerstyle);

                HSSFCell cell13 = row1.createCell(3);
                cell13.setCellStyle(centerstyle);

                // 创建列头
                // 这是列宽
                sheet.setColumnWidth(0, 5000);
                sheet.setColumnWidth(1, 5000);
                sheet.setColumnWidth(2, 5000);
                sheet.setColumnWidth(3, 5000);
                String[] title = {"IP地址", "MAC地址", "座位号", "用途"};

                HSSFRow row = sheet.createRow(2);// 创建一行
                for (int j = 0; j < title.length; j++) {
                    HSSFCell cell = row.createCell(j);// 创建一列
                    cell.setCellType(HSSFCell.CELL_TYPE_STRING);
                    cell.setCellStyle(columnHeadStyle);
                    cell.setCellValue(title[j]);
                }

            Map<String, Object> params = new HashMap<String, Object>();
            params.put("examCentreId", examCentreId);
            params.put("compRoomId", compRoomId);
            List<CompInfo> list = compInfoService.exportExamRoom(params);
                if (CollectionUtils.isNotEmpty(list)) {
                    for (int k = 1; k <= list.size(); k++) {
                        CompInfo listVo = list.get(k - 1);
                        HSSFRow rows = sheet.createRow(k + 2);// 创建一行
                      //  IP地址
                        HSSFCell cell03 = rows.createCell(0);// 创建一列
                        cell03.setCellType(HSSFCell.CELL_TYPE_NUMERIC);
                        cell03.setCellValue(listVo.getIp());
                        cell03.setCellStyle(centerstyle);
                     //  MAC地址
                        HSSFCell cell1 = rows.createCell(1);// 创建一列
                        cell1.setCellType(HSSFCell.CELL_TYPE_NUMERIC);
                        cell1.setCellValue(listVo.getMac());
                        cell1.setCellStyle(centerstyle);
                    //    座位号
                        HSSFCell cell2 = rows.createCell(2);// 创建一列
                        cell2.setCellType(HSSFCell.CELL_TYPE_NUMERIC);
                        cell2.setCellValue(listVo.getSeatNo());
                        cell2.setCellStyle(centerstyle);
                     //   用途
                        HSSFCell cell3 = rows.createCell(3);// 创建一列
                        cell3.setCellType(HSSFCell.CELL_TYPE_NUMERIC);
                        cell3.setCellValue(listVo.getType() == 1?"考试机":"备用机");
                        cell3.setCellStyle(centerstyle);
                    }
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        try {
            out = response.getOutputStream();
            response.setHeader("content-disposition","attachment;filename=" + URLEncoder.encode(fileName + ".xls", "utf-8"));
            workbook.write(out);
            if(out != null){
                out.flush();
                out.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }

    }

导出结果:

image.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,039评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,223评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,916评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,009评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,030评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,011评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,934评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,754评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,202评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,433评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,590评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,321评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,917评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,568评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,738评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,583评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,482评论 2 352

推荐阅读更多精彩内容