天天看點

java導出包含多個sheet的Excel

     前面文章已經介紹了導出簡單的Excel,這次小編要介紹的是如何導出含有多個sheet表的Excel。

    内容和上篇文章(http://blog.csdn.net/xiao714041/article/details/77423824)基本上是相同的,相同代碼不再贅述,文章主要說關鍵代碼。

    要導出多個sheet,關鍵就是Excel導出的時間設定,在執行導出檔案之前,建立多個工作表

HSSFSheet sheet = workbook.createSheet(sheettitle);  
           

    這樣每建立一個工作表,便會生成一個新的sheet表,在最後導出Excel的時候一次性導出。

    示例:

    Java類:

try {  
    HSSFWorkbook workbook = new HSSFWorkbook();  
    OutputStream out = response.getOutputStream();  
    for(int j=0;j<n;j++){  
        BaseResult<List<T>> teasalList = service.select(teasal);  
        //接下來循環list放到Excel表中  
        if(teasalList.isSuccess()&&teasalList.getResult().size()>0){  
            //檔案标題  
            SimpleDateFormat formatter1 = new SimpleDateFormat("yyyy-MM-dd");  
            String nowdate = formatter1.format(new Date());  
            String title = null;  
            title = "excel表格标題-" + nowdate + ".xls";  
            String sheettitle = "sheet表名";  
            //設定表格标題行  
            String oneheaders = "首行标題" ;  
            String dateheaders = nowdate ;  
            String[] headers = new String[] {"列1","列2","列3","列4"};  
            List<Object[]> dataList = new ArrayList<Object[]>();  
            Object[] objs = null;  
            for(int i =0; i<3 ; i++){  //循環每一條資料  
                objs = new Object[headers.length];  
                objs[1] = "張三";   //姓名  
                objs[2] = "3";  //序号  
                //資料添加到excel表格  
                dataList.add(objs);  
            }  
            //使用流将資料導出  
            //防止中文亂碼  
            String headStr = "attachment; filename=\"" + new String( title.getBytes("gb2312"), "ISO8859-1" ) + "\"";  
            response.setContentType("octets/stream");  
            response.setContentType("APPLICATION/OCTET-STREAM");  
            response.setHeader("Content-Disposition", headStr);  
            ExportExcelDownFee ex ;  
            ex = new ExportExcelDownFee(sheettitle, oneheaders, dateheaders,headers, dataList);//沒有标題  
            ex.export(workbook,out);  
        }  
    }  
    workbook.write(out);  //循環生成多個sheet之後在導出Excel
    out.close();  //關閉流
} catch (Exception e) {  
    e.printStackTrace();  
}
           

    工具類:

public class ExportExcelDownFee {  
  
    //導出表的列名  
    private String[] rowName ;  
    //導出表的小标題  
    private String oneheaders;  
    //導出表的日期  
    private String dateheaders;  
    //sheet表表名  
    private String sheettitle;  
  
    private List<Object[]>  dataList = new ArrayList<Object[]>();  
  
    HttpServletResponse  response;  
      
    //構造方法2,傳入要導出的資料  
    public ExportExcelDownFee( String sheettitle, String oneheaders, String dateheaders, String[] rowName,List<Object[]> dataList){  
        this.dataList = dataList;  
        this.oneheaders = oneheaders;  
        this.dateheaders = dateheaders;  
        this.rowName = rowName;  
        this.sheettitle = sheettitle;  
    }  
      
    /* 
     * 導出資料 
     * */  
    public void export(HSSFWorkbook workbook,OutputStream out) throws Exception{  
        try{  
            HSSFSheet sheet = workbook.createSheet(sheettitle);                  // 建立工作表  
  
            HSSFCellStyle columnTopStyle = this.getColumnTopStyle(workbook);//擷取列頭樣式對象  
            HSSFCellStyle style = this.getStyle(workbook);                  //單元格樣式對象  
  
            //第一行  
            HSSFRow rowfirstName = sheet.createRow(0);  
            HSSFCell  oneCellRowName = rowfirstName.createCell(0);               //建立列頭對應個數的單元格  
            oneCellRowName.setCellType(HSSFCell.CELL_TYPE_STRING);             //設定列頭單元格的資料類型  
            HSSFRichTextString onetext = new HSSFRichTextString(oneheaders);  
            oneCellRowName.setCellValue(onetext);                                 //設定列頭單元格的值  
            //合并單元格CellRangeAddress構造參數依次表示起始行,截至行,起始列, 截至列    
            sheet.addMergedRegion(new CellRangeAddress(0,0,0,3));    
            oneCellRowName.setCellStyle(columnTopStyle);                       //設定列頭單元格樣式  
              
            //第二行  
            HSSFRow rowDateName = sheet.createRow(1);  
            HSSFCell  DateCellRowName = rowDateName.createCell(3);  
            DateCellRowName.setCellValue(dateheaders);  
            DateCellRowName.setCellStyle(columnTopStyle);   
              
            // 定義所需列數  
            int columnNum = rowName.length;  
            HSSFRow rowRowName = sheet.createRow(2);                // 在索引2的位置建立行(最頂端的行開始的第二行)  
  
            // 将列頭設定到sheet的單元格中  
            for(int n=0;n<columnNum;n++){  
                HSSFCell  cellRowName = rowRowName.createCell(n);               //建立列頭對應個數的單元格  
                cellRowName.setCellType(HSSFCell.CELL_TYPE_STRING);             //設定列頭單元格的資料類型  
                HSSFRichTextString text = new HSSFRichTextString(rowName[n]);  
                cellRowName.setCellValue(text);                                 //設定列頭單元格的值  
                cellRowName.setCellStyle(style);                       //設定列頭單元格樣式  
            }  
  
            //将查詢出的資料設定到sheet對應的單元格中  
            for(int i=0;i<dataList.size();i++){  
  
                Object[] obj = dataList.get(i);//周遊每個對象  
                HSSFRow row = sheet.createRow(i+3);//建立所需的行數(從第二行開始寫資料)  
  
                for(int j=0; j<obj.length; j++){  
                    HSSFCell  cell = null;   //設定單元格的資料類型  
                    if(j == 0){  
                        cell = row.createCell(j,HSSFCell.CELL_TYPE_NUMERIC);  
                        cell.setCellValue(i+1);   
                    }else{  
                        cell = row.createCell(j,HSSFCell.CELL_TYPE_STRING);  
                        if(!"".equals(obj[j]) && obj[j] != null){  
                            cell.setCellValue(obj[j].toString());                       //設定單元格的值  
                        }  
                    }  
                    cell.setCellStyle(style);                                   //設定單元格樣式  
                }  
            }  
              
            //讓列寬随着導出的列長自動适應  
            for (int colNum = 0; colNum < columnNum; colNum++) {  
                int columnWidth = sheet.getColumnWidth(colNum) / 256;  
                for (int rowNum = 0; rowNum < sheet.getLastRowNum(); rowNum++) {  
                    HSSFRow currentRow;  
                    //目前行未被使用過  
                    if (sheet.getRow(rowNum) == null) {  
                        currentRow = sheet.createRow(rowNum);  
                    } else {  
                        currentRow = sheet.getRow(rowNum);  
                    }  
                    if (currentRow.getCell(colNum) != null) {  
                        HSSFCell currentCell = currentRow.getCell(colNum);  
                        if (currentCell.getCellType() == HSSFCell.CELL_TYPE_STRING) {  
                            int length = 0;  
                            try {  
                                length = currentCell.getStringCellValue().getBytes().length;  
                            } catch (Exception e) {  
                                e.printStackTrace();  
                            }  
                            if (columnWidth < length) {  
                                columnWidth = length;  
                            }  
                        }  
                    }  
  
                }  
                if(colNum == 0){  
                    sheet.setColumnWidth(colNum, (columnWidth-2) * 256);  
                }else{  
                    sheet.setColumnWidth(colNum, (columnWidth+4) * 256);  
                }  
            }  
  
        }catch(Exception e){  
            e.printStackTrace();  
        }  
    }  
  
    /*  
     * 列頭單元格樣式 
     */      
    public HSSFCellStyle getColumnTopStyle(HSSFWorkbook workbook) {  
  
          // 設定字型  
          HSSFFont font = workbook.createFont();  
          //設定字型大小  
          font.setFontHeightInPoints((short)11);  
          //字型加粗  
          //font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);  
          //設定字型名字   
          font.setFontName("宋體");  
          //設定樣式;   
          HSSFCellStyle style = workbook.createCellStyle();  
          //在樣式用應用設定的字型;    
          style.setFont(font);  
          //設定自動換行;   
          style.setWrapText(false);  
          //設定水準對齊的樣式為居中對齊;    
          style.setAlignment(HSSFCellStyle.ALIGN_CENTER);  
          //設定垂直對齊的樣式為居中對齊;   
          style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);  
  
          return style;  
  
    }  
  
    /*   
     * 列資料資訊單元格樣式 
     */    
    public HSSFCellStyle getStyle(HSSFWorkbook workbook) {  
          // 設定字型  
          HSSFFont font = workbook.createFont();  
          //設定字型名字   
          font.setFontName("宋體");  
          //設定樣式;   
          HSSFCellStyle style = workbook.createCellStyle();  
          //設定底邊框;   
          style.setBorderBottom(HSSFCellStyle.BORDER_THIN);  
          //設定底邊框顔色;    
          style.setBottomBorderColor(HSSFColor.BLACK.index);  
          //設定左邊框;     
          style.setBorderLeft(HSSFCellStyle.BORDER_THIN);  
          //設定左邊框顔色;   
          style.setLeftBorderColor(HSSFColor.BLACK.index);  
          //設定右邊框;   
          style.setBorderRight(HSSFCellStyle.BORDER_THIN);  
          //設定右邊框顔色;   
          style.setRightBorderColor(HSSFColor.BLACK.index);  
          //設定頂邊框;   
          style.setBorderTop(HSSFCellStyle.BORDER_THIN);  
          //設定頂邊框顔色;    
          style.setTopBorderColor(HSSFColor.BLACK.index);  
          //在樣式用應用設定的字型;    
          style.setFont(font);  
          //設定自動換行;   
          style.setWrapText(false);  
          //設定水準對齊的樣式為居中對齊;    
          style.setAlignment(HSSFCellStyle.ALIGN_CENTER);  
          //設定垂直對齊的樣式為居中對齊;   
          style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);  
  
          return style;  
  
      }  
}