ExcelUtil.java 50.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241
package com.subsidy.util.excel;

import com.subsidy.vo.administer.ExerciseTestVO;
import com.subsidy.vo.classdict.ClassDetailVO;
import com.subsidy.vo.member.ClassSignVO;
import com.subsidy.vo.sign.AnswerRecordVO;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.BooleanUtils;
import org.apache.commons.lang3.CharUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.math.NumberUtils;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFDateUtil;
import org.apache.poi.hssf.usermodel.HSSFFont;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.util.CellRangeAddress;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.streaming.SXSSFCell;
import org.apache.poi.xssf.streaming.SXSSFRow;
import org.apache.poi.xssf.streaming.SXSSFSheet;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.math.BigDecimal;
import java.net.URLEncoder;
import java.util.*;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import java.util.zip.ZipOutputStream;

/**
 * Excel工具
 *
 * @author DengMin
 * @date 2019/08/27 13:57
 **/
@Slf4j
public class ExcelUtil {

    private final static String EXCEL2003 = "xls";

    private final static String EXCEL2007 = "xlsx";

    /**
     * 导入excel文件
     *
     * @param path
     * @param cls
     * @param file
     * @param <T>
     * @return
     */
    public static <T> List<T> readExcel(String path, Class<T> cls, MultipartFile file) {
        String fileName = file.getOriginalFilename();
        if (!fileName.matches("^.+\\.(?i)(xls)$") && !fileName.matches("^.+\\.(?i)(xlsx)$")) {
            log.info("上传文件格式不正确");
//            throw new HTTPException(10022);
        }

        List<T> dataList = new ArrayList<>();
        Workbook workbook = null;
        try {
            InputStream is = file.getInputStream();
            if (fileName.endsWith(EXCEL2007)) {
                // FileInputStream is = new FileInputStream(new File(path));
                workbook = new XSSFWorkbook(is);
            }

            if (fileName.endsWith(EXCEL2003)) {
                // FileInputStream is = new FileInputStream(new File(path));
                workbook = new HSSFWorkbook(is);
            }

            if (workbook != null) {
                Map<String, List<Field>> classMap = new HashMap<>();
                List<Field> fields = Stream.of(cls.getDeclaredFields()).collect(Collectors.toList());
                fields.forEach(field -> {
                    ExcelColumnUtil annotation = field.getAnnotation(ExcelColumnUtil.class);
                    if (annotation != null) {
                        String value = annotation.value();
                        if (StringUtils.isBlank(value)) {
                            return;
                        }

                        if (!classMap.containsKey(value)) {
                            classMap.put(value, new ArrayList<>());
                        }

                        field.setAccessible(true);
                        classMap.get(value).add(field);
                    }
                });
                //索引-->columns
                Map<Integer, List<Field>> reflectionMap = new HashMap<>();
                //默认读取第一个sheet
                Sheet sheet = workbook.getSheetAt(0);

                boolean firstRow = true;
                for (int i = 0; i <= sheet.getLastRowNum(); i++) {
                    Row row = sheet.getRow(i);
                    //提取标题
                    if (firstRow) {
                        for (int j = 0; j <= row.getLastCellNum(); j++) {
                            Cell cell = row.getCell(j);
                            String cellValue = getCellValue(cell);
                            if (classMap.containsKey(cellValue)) {
                                reflectionMap.put(j, classMap.get(cellValue));
                            }
                        }

                        firstRow = false;
                    } else {
                        //忽略空白行
                        if (row == null) {
                            continue;
                        }

                        try {
                            T t = cls.newInstance();
                            //判断是否为空白行
                            boolean allBlank = true;
                            for (int j = 0; j <= row.getLastCellNum(); j++) {
                                if (reflectionMap.containsKey(j)) {
                                    Cell cell = row.getCell(j);
                                    String cellValue = getCellValue(cell);
                                    if (StringUtils.isNotBlank(cellValue)) {
                                        allBlank = false;
                                    }
                                    List<Field> fieldList = reflectionMap.get(j);
                                    fieldList.forEach(x -> {
                                        try {
                                            handleField(t, cellValue, x);
                                        } catch (Exception e) {
                                            e.printStackTrace();
                                            log.error(String.format("reflect field:%s value:%s exception!", x.getName(), cellValue), e);
                                        }
                                    });
                                }
                            }

                            if (!allBlank) {
                                dataList.add(t);
                            }
                        } catch (Exception e) {
                            e.printStackTrace();
                            log.error(String.format("parse row:%s exception!", i), e);
                        }
                    }
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
            log.error(String.format("parse excel exception!"), e);
        } finally {
            if (workbook != null) {
                try {
                    workbook.close();
                } catch (Exception e) {
                    e.printStackTrace();
                    log.error(String.format("parse excel exception!"), e);
                }
            }
        }
        return dataList;
    }

    /**
     * 导出excel文件
     *
     * @param list
     * @param cls
     * @param <T>
     */
    public static <T> void writeExcel(List<T> list, Class cls) {
        ServletRequestAttributes servletRequestAttributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        HttpServletResponse response = servletRequestAttributes.getResponse();
        Field[] fields = cls.getDeclaredFields();
        List<Field> fieldList = Arrays.stream(fields).filter(field -> {
            ExcelColumn annotation = field.getAnnotation(ExcelColumn.class);
            if (annotation != null) {
                field.setAccessible(true);
                return true;
            }
            return false;
        }).sorted(Comparator.comparing(field -> {
            int col = 0;
            ExcelColumn annotation = field.getAnnotation(ExcelColumn.class);
            if (annotation != null) {
                col = annotation.col();
            }
            return col;
        })).collect(Collectors.toList());

        Workbook wb = new XSSFWorkbook();
        Sheet sheet = wb.createSheet();
        AtomicInteger ai = new AtomicInteger();
        {
            Row row = sheet.createRow(ai.getAndIncrement());
            AtomicInteger at = new AtomicInteger();
            fieldList.forEach(field -> {
                ExcelColumn annotation = field.getAnnotation(ExcelColumn.class);
                String columnName = "";
                if (annotation != null) {
                    columnName = annotation.value();
                }
                Cell cell = row.createCell(at.getAndIncrement());
                CellStyle cellStyle = wb.createCellStyle();
                cellStyle.setFillForegroundColor(IndexedColors.PALE_BLUE.getIndex());
                Font font = wb.createFont();
                font.setBoldweight(Font.BOLDWEIGHT_BOLD);
                cellStyle.setFont(font);
                cell.setCellStyle(cellStyle);
                cell.setCellValue(columnName);
            });

            if (list != null) {
                list.forEach(data -> {
                    Row r = sheet.createRow(ai.getAndIncrement());
                    AtomicInteger a = new AtomicInteger();
                    fieldList.forEach(field -> {
                        try {
                            Class<?> type = field.getType();
                            Object value = field.get(data);
                            Cell cell = r.createCell(a.getAndIncrement());
                            if (value != null) {
                                cell.setCellValue(value.toString());
                            }
                        } catch (IllegalAccessException e) {
                            e.printStackTrace();
                        }
                    });
                });
                for (int i = 0; i < list.size(); i++) {
                    sheet.autoSizeColumn(i);
                }
            }
            String fileName = String.valueOf(new Date().getTime());
            buildExcelDocument(fileName + "." + EXCEL2007, wb, response);
        }
    }

    public static <T> void writeMemberExcel(String companyName, String studyDate, String courseName, String title, List<ClassDetailVO> list, List<String> headerList) throws Exception {

        ServletRequestAttributes requestAttributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        HttpServletResponse response = requestAttributes.getResponse();
        response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
        response.addHeader("content-disposition", "attachment;filename="
                + java.net.URLEncoder.encode("member.xlsx", "utf-8"));

        // 声明一个工作薄
        SXSSFWorkbook workbook = new SXSSFWorkbook(1000);//缓存
        workbook.setCompressTempFiles(true);
        //表头样式
        CellStyle titleStyle = workbook.createCellStyle();
        setStyle(titleStyle);
        Font titleFont = workbook.createFont();
        titleFont.setFontHeightInPoints((short) 20);
        titleFont.setBoldweight((short) 700);
        titleStyle.setFont(titleFont);

        //第二行/第三行样式
        CellStyle secondStyle = workbook.createCellStyle();
        secondStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); //下边框
        secondStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左边框
        secondStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框
        secondStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框
        secondStyle.setAlignment(HSSFCellStyle.ALIGN_LEFT);
        Font secondFont = workbook.createFont();
        secondStyle.setFont(secondFont);

        // 列头样式
        CellStyle headerStyle = workbook.createCellStyle();
        setStyle(headerStyle);
        Font headerFont = workbook.createFont();
        headerFont.setFontHeightInPoints((short) 12);
        headerFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);//粗体显示
        headerStyle.setFont(headerFont);

        // 数据单元格样式
        CellStyle cellStyle = workbook.createCellStyle();
        setStyle(cellStyle);
        Font cellFont = workbook.createFont();
        cellFont.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);
        cellStyle.setFont(cellFont);
        // 生成一个(带标题)表格
        SXSSFSheet sheet = workbook.createSheet();
        //设置列宽
        int minBytes = 17;//至少字节数
        int[] arrColWidth = new int[headerList.size()];
        // 产生表格标题行,以及设置列宽
        String[] headers = new String[headerList.size()];
        int ii = 0;
        for (int i = 0; i < headerList.size(); i++) {

            headers[ii] = headerList.get(i);

            int bytes = headerList.get(i).getBytes().length;
            arrColWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, arrColWidth[ii] * 256);
            ii++;
        }

        //第二行
        int[] secondWidth = new int[2];
        // 产生表格标题行,以及设置列宽
        String[] secondHead = new String[2];
        List<String> secondList = Arrays.asList("培训实施单位:" + companyName, "培训时间:" + studyDate);

        //第三行
        int[] thirdWidth = new int[2];
        // 产生表格标题行,以及设置列宽
        String[] thirdHead = new String[2];
        List<String> thirdList = Arrays.asList("培训项目:" + courseName, "培训平台:有课互联系统");


        ii = 0;
        for (int i = 0; i < 2; i++) {
            secondHead[ii] = secondList.get(i);
            int bytes = secondList.get(i).getBytes().length;
            secondWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, secondWidth[ii] * 256);
            ii++;
        }

        ii = 0;
        for (int i = 0; i < 2; i++) {
            thirdHead[ii] = thirdList.get(i);
            int bytes = thirdList.get(i).getBytes().length;
            thirdWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, thirdWidth[ii] * 256);
            ii++;
        }

        // 遍历集合数据,产生数据行
        //标题 0
        SXSSFRow titleRow = sheet.createRow(0);//表头 rowIndex=0
        titleRow.createCell(0).setCellValue(title);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, new CellRangeAddress(0, 0, 0, 0), sheet, workbook);   //给合并过的单元格加边框
        titleRow.getCell(0).setCellStyle(titleStyle);
        sheet.addMergedRegion(new CellRangeAddress(0, 0, 0, headerList.size() - 1));

        //第二行  1
        SXSSFRow secondRow = sheet.createRow(1); //第二行 rowIndex =1
        CellRangeAddress cellRangeAddress21 = new CellRangeAddress(1, 1, 0, 4);
        sheet.addMergedRegion(cellRangeAddress21);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress21, sheet, workbook);   //给合并过的单元格加边框

        CellRangeAddress cellRangeAddress22 = new CellRangeAddress(1, 1, 5, 10);
        sheet.addMergedRegion(cellRangeAddress22);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress22, sheet, workbook);   //给合并过的单元格加边框

        secondRow.createCell(0).setCellValue(secondHead[0]);
        secondRow.getCell(0).setCellStyle(secondStyle);

        secondRow.createCell(5).setCellValue(secondHead[1]);
        secondRow.getCell(5).setCellStyle(secondStyle);

        //第三行  2
        SXSSFRow thirdRow = sheet.createRow(2); //第二行 rowIndex =1
        CellRangeAddress cellRangeAddress31 = new CellRangeAddress(2, 2, 0, 4);
        sheet.addMergedRegion(cellRangeAddress31);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress31, sheet, workbook);   //给合并过的单元格加边框

        CellRangeAddress cellRangeAddress32 = new CellRangeAddress(2, 2, 5, 10);
        sheet.addMergedRegion(cellRangeAddress32);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress32, sheet, workbook);   //给合并过的单元格加边框
        thirdRow.createCell(0).setCellValue(thirdHead[0]);
        thirdRow.getCell(0).setCellStyle(secondStyle);

        thirdRow.createCell(5).setCellValue(thirdHead[1]);
        thirdRow.getCell(5).setCellStyle(secondStyle);

        //标题  3
        SXSSFRow headerRow = sheet.createRow(3); //列头 rowIndex =1
        for (int i = 0; i < headers.length; i++) {
            headerRow.createCell(i).setCellValue(headers[i]);
            headerRow.getCell(i).setCellStyle(headerStyle);
        }

        int seq = 1;

        //内容
        int rowIndex = 0;
        for (ClassDetailVO classDetailVO : list) {
            if (rowIndex == 65535 || rowIndex == 0) {
                if (rowIndex != 0) {
                    sheet = workbook.createSheet();//如果数据超过了,则在第二页显示
                }
                rowIndex = 4;//数据内容从 rowIndex=2开始
            }

            SXSSFRow dataRow = sheet.createRow(rowIndex);

            SXSSFCell newCell = dataRow.createCell(0);
            cellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(seq);


            newCell = dataRow.createCell(1);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classDetailVO.getUserName());


            newCell = dataRow.createCell(2);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classDetailVO.getIdCard());


            newCell = dataRow.createCell(3);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classDetailVO.getAccountName());

            newCell = dataRow.createCell(4);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classDetailVO.getTelephone());

            newCell = dataRow.createCell(5);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classDetailVO.getSignCounts());

            newCell = dataRow.createCell(6);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classDetailVO.getClassProcess());

            newCell = dataRow.createCell(7);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classDetailVO.getTrainingLengthStr());

            newCell = dataRow.createCell(8);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classDetailVO.getAskCounts());

            newCell = dataRow.createCell(9);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classDetailVO.getScore());

            newCell = dataRow.createCell(10);
            newCell.setCellStyle(cellStyle);

            newCell.setCellValue(classDetailVO.getResult());
            rowIndex++;
            seq++;

        }

        try {
            OutputStream outputStream = response.getOutputStream();
            workbook.write(outputStream);
            workbook.close();
            workbook.dispose();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static <T> void writeSignExcel(String companyName, String studyDate, String courseName, String title, List<ClassSignVO> list, List<String> headerList) throws Exception {

        ServletRequestAttributes requestAttributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        HttpServletResponse response = requestAttributes.getResponse();
        response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
        response.addHeader("content-disposition", "attachment;filename="
                + java.net.URLEncoder.encode("sign.xlsx", "utf-8"));

        // 声明一个工作薄
        SXSSFWorkbook workbook = new SXSSFWorkbook(1000);//缓存
        workbook.setCompressTempFiles(true);
        //表头样式
        CellStyle titleStyle = workbook.createCellStyle();
        setStyle(titleStyle);
        Font titleFont = workbook.createFont();
        titleFont.setFontHeightInPoints((short) 20);
        titleFont.setBoldweight((short) 700);
        titleStyle.setFont(titleFont);

        //第二行
        CellStyle secondStyle = workbook.createCellStyle();
        secondStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); //下边框
        secondStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左边框
        secondStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框
        secondStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框
        secondStyle.setAlignment(HSSFCellStyle.ALIGN_LEFT);
        Font secondFont = workbook.createFont();
        secondStyle.setFont(secondFont);

        //第三行
        CellStyle thirdStyle = workbook.createCellStyle();
        thirdStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); //下边框
        thirdStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左边框
        thirdStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框
        thirdStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框
        secondStyle.setAlignment(HSSFCellStyle.ALIGN_LEFT);
        Font thirdFont = workbook.createFont();
        thirdStyle.setFont(thirdFont);

        // 列头样式
        CellStyle headerStyle = workbook.createCellStyle();
        setStyle(headerStyle);
        Font headerFont = workbook.createFont();
        headerFont.setFontHeightInPoints((short) 12);
        headerFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);//粗体显示
        headerStyle.setFont(headerFont);

        // 数据单元格样式
        CellStyle cellStyle = workbook.createCellStyle();
        setStyle(cellStyle);
        Font cellFont = workbook.createFont();
        cellFont.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);
        cellStyle.setFont(cellFont);
        // 生成一个(带标题)表格
        SXSSFSheet sheet = workbook.createSheet();
        //设置列宽
        int minBytes = 17;//至少字节数
        int[] arrColWidth = new int[headerList.size()];
        // 产生表格标题行,以及设置列宽
        String[] headers = new String[headerList.size()];
        int ii = 0;
        for (int i = 0; i < headerList.size(); i++) {

            headers[ii] = headerList.get(i);

            int bytes = headerList.get(i).getBytes().length;
            arrColWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, arrColWidth[ii] * 256);
            ii++;
        }

        //第二行
        int[] secondWidth = new int[2];
        // 产生表格标题行,以及设置列宽
        String[] secondHead = new String[2];
        List<String> secondList = Arrays.asList("培训实施单位:" + companyName, "培训时间:" + studyDate);

        //第三行
        int[] thirdWidth = new int[2];
        // 产生表格标题行,以及设置列宽
        String[] thirdHead = new String[2];
        List<String> thirdList = Arrays.asList("培训项目:" + courseName, "培训平台:有课互联系统");


        ii = 0;
        for (int i = 0; i < 2; i++) {
            secondHead[ii] = secondList.get(i);
            int bytes = secondList.get(i).getBytes().length;
            secondWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, secondWidth[ii] * 256);
            ii++;
        }

        ii = 0;
        for (int i = 0; i < 2; i++) {
            thirdHead[ii] = thirdList.get(i);
            int bytes = thirdList.get(i).getBytes().length;
            thirdWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, thirdWidth[ii] * 256);
            ii++;
        }

        // 遍历集合数据,产生数据行
        //标题 0
        SXSSFRow titleRow = sheet.createRow(0);//表头 rowIndex=0
        titleRow.createCell(0).setCellValue(title);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, new CellRangeAddress(0, 0, 0, 0), sheet, workbook);   //给合并过的单元格加边框
        titleRow.getCell(0).setCellStyle(titleStyle);
        sheet.addMergedRegion(new CellRangeAddress(0, 0, 0, headerList.size() - 1));

        //第二行  1
        SXSSFRow secondRow = sheet.createRow(1); //第二行 rowIndex =1
        CellRangeAddress cellRangeAddress21 = new CellRangeAddress(1, 1, 0, 3);
        sheet.addMergedRegion(cellRangeAddress21);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress21, sheet, workbook);   //给合并过的单元格加边框

        CellRangeAddress cellRangeAddress22 = new CellRangeAddress(1, 1, 4, 8);
        sheet.addMergedRegion(cellRangeAddress22);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress22, sheet, workbook);   //给合并过的单元格加边框

        secondRow.createCell(0).setCellValue(secondHead[0]);
        secondRow.getCell(0).setCellStyle(secondStyle);

        secondRow.createCell(4).setCellValue(secondHead[1]);
        secondRow.getCell(4).setCellStyle(secondStyle);

        //第三行  2
        SXSSFRow thirdRow = sheet.createRow(2); //第二行 rowIndex =1
        CellRangeAddress cellRangeAddress31 = new CellRangeAddress(2, 2, 0, 3);
        sheet.addMergedRegion(cellRangeAddress31);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress31, sheet, workbook);   //给合并过的单元格加边框

        CellRangeAddress cellRangeAddress32 = new CellRangeAddress(2, 2, 4, 8);
        sheet.addMergedRegion(cellRangeAddress32);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress32, sheet, workbook);   //给合并过的单元格加边框
        thirdRow.createCell(0).setCellValue(thirdHead[0]);
        thirdRow.getCell(0).setCellStyle(thirdStyle);

        thirdRow.createCell(4).setCellValue(thirdHead[1]);
        thirdRow.getCell(4).setCellStyle(thirdStyle);

        //标题  3
        SXSSFRow headerRow = sheet.createRow(3); //列头 rowIndex =1
        for (int i = 0; i < headers.length; i++) {
            headerRow.createCell(i).setCellValue(headers[i]);
            headerRow.getCell(i).setCellStyle(headerStyle);
        }

        int seq = 1;

        //内容
        int rowIndex = 0;
        for (ClassSignVO classSignVO : list) {
            if (rowIndex == 65535 || rowIndex == 0) {
                if (rowIndex != 0) {
                    sheet = workbook.createSheet();//如果数据超过了,则在第二页显示
                }
                rowIndex = 4;//数据内容从 rowIndex=2开始
            }

            SXSSFRow dataRow = sheet.createRow(rowIndex);

            SXSSFCell newCell = dataRow.createCell(0);
            cellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(seq);


            newCell = dataRow.createCell(1);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classSignVO.getUserName());


            newCell = dataRow.createCell(2);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classSignVO.getIdCard());


            newCell = dataRow.createCell(3);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classSignVO.getTelephone());

            newCell = dataRow.createCell(4);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classSignVO.getTrainingLengthStr());

            newCell = dataRow.createCell(5);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classSignVO.getClassProcess());

            newCell = dataRow.createCell(6);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classSignVO.getPercent());

            newCell = dataRow.createCell(7);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classSignVO.getSignCounts());

            newCell = dataRow.createCell(8);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(classSignVO.getSignInDateList());

            rowIndex++;
            seq++;

        }

        try {
            OutputStream outputStream = response.getOutputStream();
            workbook.write(outputStream);
            workbook.close();
            workbook.dispose();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static <T> void writeTestExcel(String companyName, String studyDate, String courseName, String title, List<ExerciseTestVO> list, List<String> headerList) throws Exception {

        ServletRequestAttributes requestAttributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        HttpServletResponse response = requestAttributes.getResponse();
        response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
        response.addHeader("content-disposition", "attachment;filename="
                + java.net.URLEncoder.encode("test.xlsx", "utf-8"));

        // 声明一个工作薄
        SXSSFWorkbook workbook = new SXSSFWorkbook(1000);//缓存
        workbook.setCompressTempFiles(true);
        //表头样式
        CellStyle titleStyle = workbook.createCellStyle();
        setStyle(titleStyle);
        Font titleFont = workbook.createFont();
        titleFont.setFontHeightInPoints((short) 20);
        titleFont.setBoldweight((short) 700);
        titleStyle.setFont(titleFont);

        //第二行
        CellStyle secondStyle = workbook.createCellStyle();
        secondStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); //下边框
        secondStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左边框
        secondStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框
        secondStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框
        secondStyle.setAlignment(HSSFCellStyle.ALIGN_LEFT);
        Font secondFont = workbook.createFont();
        secondStyle.setFont(secondFont);

        //第三行
        CellStyle thirdStyle = workbook.createCellStyle();
        thirdStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); //下边框
        thirdStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左边框
        thirdStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框
        thirdStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框
        secondStyle.setAlignment(HSSFCellStyle.ALIGN_LEFT);
        Font thirdFont = workbook.createFont();
        thirdStyle.setFont(thirdFont);

        // 列头样式
        CellStyle headerStyle = workbook.createCellStyle();
        setStyle(headerStyle);
        Font headerFont = workbook.createFont();
        headerFont.setFontHeightInPoints((short) 12);
        headerFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);//粗体显示
        headerStyle.setFont(headerFont);

        // 数据单元格样式
        CellStyle cellStyle = workbook.createCellStyle();
        setStyle(cellStyle);
        Font cellFont = workbook.createFont();
        cellFont.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);
        cellStyle.setFont(cellFont);
        // 生成一个(带标题)表格
        SXSSFSheet sheet = workbook.createSheet();
        //设置列宽
        int minBytes = 17;//至少字节数
        int[] arrColWidth = new int[headerList.size()];
        // 产生表格标题行,以及设置列宽
        String[] headers = new String[headerList.size()];
        int ii = 0;
        for (int i = 0; i < headerList.size(); i++) {

            headers[ii] = headerList.get(i);

            int bytes = headerList.get(i).getBytes().length;
            arrColWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, arrColWidth[ii] * 256);
            ii++;
        }

        //第二行
        int[] secondWidth = new int[2];
        // 产生表格标题行,以及设置列宽
        String[] secondHead = new String[2];
        List<String> secondList = Arrays.asList("培训实施单位:" + companyName, "培训时间:" + studyDate);

        //第三行
        int[] thirdWidth = new int[2];
        // 产生表格标题行,以及设置列宽
        String[] thirdHead = new String[2];
        List<String> thirdList = Arrays.asList("培训项目:" + courseName, "培训平台:有课互联系统");


        ii = 0;
        for (int i = 0; i < 2; i++) {
            secondHead[ii] = secondList.get(i);
            int bytes = secondList.get(i).getBytes().length;
            secondWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, secondWidth[ii] * 256);
            ii++;
        }

        ii = 0;
        for (int i = 0; i < 2; i++) {
            thirdHead[ii] = thirdList.get(i);
            int bytes = thirdList.get(i).getBytes().length;
            thirdWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, thirdWidth[ii] * 256);
            ii++;
        }

        // 遍历集合数据,产生数据行
        //标题 0
        SXSSFRow titleRow = sheet.createRow(0);//表头 rowIndex=0
        titleRow.createCell(0).setCellValue(title);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, new CellRangeAddress(0, 0, 0, 0), sheet, workbook);   //给合并过的单元格加边框
        titleRow.getCell(0).setCellStyle(titleStyle);
        sheet.addMergedRegion(new CellRangeAddress(0, 0, 0, headerList.size() - 1));

        //第二行  1
        SXSSFRow secondRow = sheet.createRow(1); //第二行 rowIndex =1
        CellRangeAddress cellRangeAddress21 = new CellRangeAddress(1, 1, 0, 3);
        sheet.addMergedRegion(cellRangeAddress21);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress21, sheet, workbook);   //给合并过的单元格加边框

        CellRangeAddress cellRangeAddress22 = new CellRangeAddress(1, 1, 4, 6);
        sheet.addMergedRegion(cellRangeAddress22);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress22, sheet, workbook);   //给合并过的单元格加边框

        secondRow.createCell(0).setCellValue(secondHead[0]);
        secondRow.getCell(0).setCellStyle(secondStyle);

        secondRow.createCell(4).setCellValue(secondHead[1]);
        secondRow.getCell(4).setCellStyle(secondStyle);

        //第三行  2
        SXSSFRow thirdRow = sheet.createRow(2); //第二行 rowIndex =1
        CellRangeAddress cellRangeAddress31 = new CellRangeAddress(2, 2, 0, 3);
        sheet.addMergedRegion(cellRangeAddress31);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress31, sheet, workbook);   //给合并过的单元格加边框

        CellRangeAddress cellRangeAddress32 = new CellRangeAddress(2, 2, 4, 6);
        sheet.addMergedRegion(cellRangeAddress32);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress32, sheet, workbook);   //给合并过的单元格加边框
        thirdRow.createCell(0).setCellValue(thirdHead[0]);
        thirdRow.getCell(0).setCellStyle(thirdStyle);

        thirdRow.createCell(4).setCellValue(thirdHead[1]);
        thirdRow.getCell(4).setCellStyle(thirdStyle);

        //标题  3
        SXSSFRow headerRow = sheet.createRow(3); //列头 rowIndex =1
        for (int i = 0; i < headers.length; i++) {
            headerRow.createCell(i).setCellValue(headers[i]);
            headerRow.getCell(i).setCellStyle(headerStyle);
        }

        int seq = 1;

        //内容
        int rowIndex = 0;
        for (ExerciseTestVO exerciseTestVO : list) {
            if (rowIndex == 65535 || rowIndex == 0) {
                if (rowIndex != 0) {
                    sheet = workbook.createSheet();//如果数据超过了,则在第二页显示
                }
                rowIndex = 4;//数据内容从 rowIndex=2开始
            }

            SXSSFRow dataRow = sheet.createRow(rowIndex);

            SXSSFCell newCell = dataRow.createCell(0);
            cellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(seq);


            newCell = dataRow.createCell(1);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(exerciseTestVO.getUserName());


            newCell = dataRow.createCell(2);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(exerciseTestVO.getIdCard());


            newCell = dataRow.createCell(3);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(exerciseTestVO.getTelephone());

            newCell = dataRow.createCell(4);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(exerciseTestVO.getScore());

            //次数
            newCell = dataRow.createCell(5);
            newCell.setCellStyle(cellStyle);
            if (exerciseTestVO.getScore() != 0) {
                newCell.setCellValue(1);
            } else {
                newCell.setCellValue(0);
            }

            newCell = dataRow.createCell(6);
            newCell.setCellStyle(cellStyle);
            if (exerciseTestVO.getScore() >= 60) {
                newCell.setCellValue("合格");
            } else {
                newCell.setCellValue("不合格");
            }

            rowIndex++;
            seq++;

        }

        try {
            OutputStream outputStream = response.getOutputStream();
            workbook.write(outputStream);
            workbook.close();
            workbook.dispose();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static <T> void writeAnswerExcel(String companyName, String studyDate, String courseName, String title, List<AnswerRecordVO> list, List<String> headerList) throws Exception {

        ServletRequestAttributes requestAttributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
        HttpServletResponse response = requestAttributes.getResponse();
        response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
        response.addHeader("content-disposition", "attachment;filename="
                + java.net.URLEncoder.encode("answer.xlsx", "utf-8"));

        // 声明一个工作薄
        SXSSFWorkbook workbook = new SXSSFWorkbook(1000);//缓存
        workbook.setCompressTempFiles(true);
        //表头样式
        CellStyle titleStyle = workbook.createCellStyle();
        setStyle(titleStyle);
        Font titleFont = workbook.createFont();
        titleFont.setFontHeightInPoints((short) 20);
        titleFont.setBoldweight((short) 700);
        titleStyle.setFont(titleFont);

        //第二行
        CellStyle secondStyle = workbook.createCellStyle();
        secondStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); //下边框
        secondStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左边框
        secondStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框
        secondStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框
        secondStyle.setAlignment(HSSFCellStyle.ALIGN_LEFT);
        Font secondFont = workbook.createFont();
        secondStyle.setFont(secondFont);

        //第三行
        CellStyle thirdStyle = workbook.createCellStyle();
        thirdStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); //下边框
        thirdStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左边框
        thirdStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框
        thirdStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框
        secondStyle.setAlignment(HSSFCellStyle.ALIGN_LEFT);
        Font thirdFont = workbook.createFont();
        thirdStyle.setFont(thirdFont);

        // 列头样式
        CellStyle headerStyle = workbook.createCellStyle();
        setStyle(headerStyle);
        Font headerFont = workbook.createFont();
        headerFont.setFontHeightInPoints((short) 12);
        headerFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);//粗体显示
        headerStyle.setFont(headerFont);

        // 数据单元格样式
        CellStyle cellStyle = workbook.createCellStyle();
        setStyle(cellStyle);
        Font cellFont = workbook.createFont();
        cellFont.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);
        cellStyle.setFont(cellFont);
        // 生成一个(带标题)表格
        SXSSFSheet sheet = workbook.createSheet();
        //设置列宽
        int minBytes = 17;//至少字节数
        int[] arrColWidth = new int[headerList.size()];
        // 产生表格标题行,以及设置列宽
        String[] headers = new String[headerList.size()];
        int ii = 0;
        for (int i = 0; i < headerList.size(); i++) {

            headers[ii] = headerList.get(i);

            int bytes = headerList.get(i).getBytes().length;
            arrColWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, arrColWidth[ii] * 256);
            ii++;
        }

        //第二行
        int[] secondWidth = new int[2];
        // 产生表格标题行,以及设置列宽
        String[] secondHead = new String[2];
        List<String> secondList = Arrays.asList("培训实施单位:" + companyName, "培训时间:" + studyDate);

        //第三行
        int[] thirdWidth = new int[2];
        // 产生表格标题行,以及设置列宽
        String[] thirdHead = new String[2];
        List<String> thirdList = Arrays.asList("培训项目:" + courseName, "培训平台:有课互联系统");


        ii = 0;
        for (int i = 0; i < 2; i++) {
            secondHead[ii] = secondList.get(i);
            int bytes = secondList.get(i).getBytes().length;
            secondWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, secondWidth[ii] * 256);
            ii++;
        }

        ii = 0;
        for (int i = 0; i < 2; i++) {
            thirdHead[ii] = thirdList.get(i);
            int bytes = thirdList.get(i).getBytes().length;
            thirdWidth[ii] = bytes < minBytes ? minBytes : bytes;
            sheet.setColumnWidth(ii, thirdWidth[ii] * 256);
            ii++;
        }

        // 遍历集合数据,产生数据行
        //标题 0
        SXSSFRow titleRow = sheet.createRow(0);//表头 rowIndex=0
        titleRow.createCell(0).setCellValue(title);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, new CellRangeAddress(0, 0, 0, 0), sheet, workbook);   //给合并过的单元格加边框
        titleRow.getCell(0).setCellStyle(titleStyle);
        sheet.addMergedRegion(new CellRangeAddress(0, 0, 0, headerList.size() - 1));

        //第二行  1
        SXSSFRow secondRow = sheet.createRow(1); //第二行 rowIndex =1
        CellRangeAddress cellRangeAddress21 = new CellRangeAddress(1, 1, 0, 2);
        sheet.addMergedRegion(cellRangeAddress21);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress21, sheet, workbook);   //给合并过的单元格加边框

        CellRangeAddress cellRangeAddress22 = new CellRangeAddress(1, 1, 3, 5);
        sheet.addMergedRegion(cellRangeAddress22);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress22, sheet, workbook);   //给合并过的单元格加边框

        secondRow.createCell(0).setCellValue(secondHead[0]);
        secondRow.getCell(0).setCellStyle(secondStyle);

        secondRow.createCell(3).setCellValue(secondHead[1]);
        secondRow.getCell(3).setCellStyle(secondStyle);

        //第三行  2
        SXSSFRow thirdRow = sheet.createRow(2); //第二行 rowIndex =1
        CellRangeAddress cellRangeAddress31 = new CellRangeAddress(2, 2, 0, 2);
        sheet.addMergedRegion(cellRangeAddress31);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress31, sheet, workbook);   //给合并过的单元格加边框

        CellRangeAddress cellRangeAddress32 = new CellRangeAddress(2, 2, 3, 5);
        sheet.addMergedRegion(cellRangeAddress32);
        setBorderStyle(HSSFCellStyle.BORDER_THIN, cellRangeAddress32, sheet, workbook);   //给合并过的单元格加边框
        thirdRow.createCell(0).setCellValue(thirdHead[0]);
        thirdRow.getCell(0).setCellStyle(thirdStyle);

        thirdRow.createCell(3).setCellValue(thirdHead[1]);
        thirdRow.getCell(3).setCellStyle(thirdStyle);

        //标题  3
        SXSSFRow headerRow = sheet.createRow(3); //列头 rowIndex =1
        for (int i = 0; i < headers.length; i++) {
            headerRow.createCell(i).setCellValue(headers[i]);
            headerRow.getCell(i).setCellStyle(headerStyle);
        }

        int seq = 1;

        //内容
        int rowIndex = 0;
        for (AnswerRecordVO answerRecordVO : list) {
            if (rowIndex == 65535 || rowIndex == 0) {
                if (rowIndex != 0) {
                    sheet = workbook.createSheet();//如果数据超过了,则在第二页显示
                }
                rowIndex = 4;//数据内容从 rowIndex=2开始
            }

            SXSSFRow dataRow = sheet.createRow(rowIndex);

            SXSSFCell newCell = dataRow.createCell(0);
            cellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(seq);


            newCell = dataRow.createCell(1);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(answerRecordVO.getTitle());


            newCell = dataRow.createCell(2);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(answerRecordVO.getAnswer());


            newCell = dataRow.createCell(3);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(answerRecordVO.getCreateDate());

            newCell = dataRow.createCell(4);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(answerRecordVO.getUserName());

            //次数
            newCell = dataRow.createCell(5);
            newCell.setCellStyle(cellStyle);
            newCell.setCellValue(answerRecordVO.getUpdateDate());

            rowIndex++;
            seq++;

        }

        try {
            OutputStream outputStream = response.getOutputStream();
            workbook.write(outputStream);
            workbook.close();
            workbook.dispose();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    private static void setStyle(CellStyle cellStyle) {
        // 水平居中
        cellStyle.setAlignment(CellStyle.ALIGN_CENTER);
        // 垂直居中
        cellStyle.setVerticalAlignment(CellStyle.ALIGN_CENTER);
        // 边框
        cellStyle.setBorderTop(CellStyle.BORDER_THIN);
        // 边框
        cellStyle.setBorderLeft(CellStyle.BORDER_THIN);
        // 边框
        cellStyle.setBorderRight(CellStyle.BORDER_THIN);
        // 边框
        cellStyle.setBorderBottom(CellStyle.BORDER_THIN);
    }

    //也可用以下方法
    public static void setBorderStyle(int border, CellRangeAddress region, SXSSFSheet sheet, SXSSFWorkbook wb) {
        CellStyle cs = wb.createCellStyle(); // 样式对象
        cs.setBorderBottom((short) border);
        cs.setBorderTop((short) border);
        cs.setBorderLeft((short) border);
        cs.setBorderRight((short) border);

        setRegionStyle(cs, region, sheet);
    }

    private static void setRegionStyle(CellStyle cs, CellRangeAddress region, SXSSFSheet sheet) {
        for (int i = region.getFirstRow(); i <= region.getLastRow(); i++) {
            SXSSFRow row = sheet.getRow(i);
            if (row == null) {
                row = sheet.createRow(i);
            }
            for (int j = region.getFirstColumn(); j <= region.getLastColumn(); j++) {
                SXSSFCell cell = row.getCell(j);
                if (cell == null) {
                    cell = row.createCell(j);
                    cell.setCellValue("");
                }
                cell.setCellStyle(cs);
            }
        }
    }


    private static <T> void handleField(T t, String value, Field field) throws Exception {
        Class<?> type = field.getType();
        if (type == null || type == void.class || StringUtils.isBlank(value)) {
            return;
        }
        if (type == Object.class) {
            field.set(t, value);
            //数字类型
        } else if (type.getSuperclass() == null || type.getSuperclass() == Number.class) {
            if (type == int.class || type == Integer.class) {
                field.set(t, NumberUtils.toInt(value));
            } else if (type == long.class || type == Long.class) {
                field.set(t, NumberUtils.toLong(value));
            } else if (type == byte.class || type == Byte.class) {
                field.set(t, NumberUtils.toByte(value));
            } else if (type == short.class || type == Short.class) {
                field.set(t, NumberUtils.toShort(value));
            } else if (type == double.class || type == Double.class) {
                field.set(t, NumberUtils.toDouble(value));
            } else if (type == float.class || type == Float.class) {
                field.set(t, NumberUtils.toFloat(value));
            } else if (type == char.class || type == Character.class) {
                field.set(t, CharUtils.toChar(value));
            } else if (type == boolean.class) {
                field.set(t, BooleanUtils.toBoolean(value));
            } else if (type == BigDecimal.class) {
                field.set(t, new BigDecimal(value));
            }
        } else if (type == Boolean.class) {
            field.set(t, BooleanUtils.toBoolean(value));
        } else if (type == Date.class) {
            //
            field.set(t, value);
        } else if (type == String.class) {
            field.set(t, value);
        } else {
            Constructor<?> constructor = type.getConstructor(String.class);
            field.set(t, constructor.newInstance(value));
        }
    }

    private static String getCellValue(Cell cell) {
        if (cell == null) {
            return "";
        }

        if (cell.getCellType() == Cell.CELL_TYPE_NUMERIC) {
            if (DateUtil.isCellDateFormatted(cell)) {
                return HSSFDateUtil.getJavaDate(cell.getNumericCellValue()).toString();
            } else {
                return new BigDecimal(cell.getNumericCellValue()).toString();
            }
        } else if (cell.getCellType() == Cell.CELL_TYPE_STRING) {
            return StringUtils.trimToEmpty(cell.getStringCellValue());
        } else if (cell.getCellType() == Cell.CELL_TYPE_FORMULA) {
            return StringUtils.trimToEmpty(cell.getCellFormula());
        } else if (cell.getCellType() == Cell.CELL_TYPE_BLANK) {
            return "";
        } else if (cell.getCellType() == Cell.CELL_TYPE_BOOLEAN) {
            return String.valueOf(cell.getBooleanCellValue());
        } else if (cell.getCellType() == Cell.CELL_TYPE_ERROR) {
            return "ERROR";
        } else {
            return cell.toString().trim();
        }
    }

    private static void buildExcelDocument(String fileName, Workbook wb, HttpServletResponse response) {
        try {
            response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
            response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(fileName, "utf-8"));
            response.flushBuffer();
            wb.write(response.getOutputStream());
        } catch (IOException e) {
            log.error(String.format("downLoad excel exception"), e);
        }
    }

    private static void buildExcelFile(String path, Workbook wb) {
        File file = new File(path);
        if (file.exists()) {
            file.delete();
        }

        try {
            wb.write(new FileOutputStream(file));
        } catch (Exception e) {
            log.error(String.format("downLoad excel exception"), e);
        }
    }
}