中文字幕在线观看,亚洲а∨天堂久久精品9966,亚洲成a人片在线观看你懂的,亚洲av成人片无码网站,亚洲国产精品无码久久久五月天

ApachePOI 動態(tài)列表生成excel

2018-07-20    來源:open-open

容器云強勢上線!快速搭建集群,上萬Linux鏡像隨意使用
先創(chuàng)建導出Excel的工具類,并帶泛型,實體一定要生成屬性的get方法,就是普通的Javabean,后面的就是個人發(fā)揮了,廢話不多說,直接上代碼:
public class ExportExcel<T> {
     
    public void exportExcel(Collection<T> dataset, OutputStream out) {
          exportExcel("數(shù)據(jù)導出", null, dataset, out, "yyyy-MM-dd hh:MM:ss");
       }
      
       public void exportExcel(String[] headers, Collection<T> dataset,
             OutputStream out) {
          exportExcel("數(shù)據(jù)導出", headers, dataset, out, "yyyy-MM-dd hh:MM:ss");
       }
      
       public void exportExcel(String[] headers, Collection<T> dataset,
             OutputStream out, String pattern) {
          exportExcel("數(shù)據(jù)導出", headers, dataset, out, pattern);
       }
        
       public void exportExcel(String title, String[] headers,
                 Collection<T> dataset, OutputStream out, String pattern) {
              // 聲明一個工作薄
              HSSFWorkbook workbook = new HSSFWorkbook();
              // 生成一個表格
              HSSFSheet sheet = workbook.createSheet(title);
              // 設(shè)置表格默認列寬度為30個字節(jié)
              sheet.setDefaultColumnWidth(30);
              // 生成一個樣式
              HSSFCellStyle style = workbook.createCellStyle();
              // 設(shè)置這些樣式
              style.setFillForegroundColor(HSSFColor.WHITE.index);
              style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
              style.setBorderBottom(HSSFCellStyle.BORDER_THIN);
              style.setBorderLeft(HSSFCellStyle.BORDER_THIN);
              style.setBorderRight(HSSFCellStyle.BORDER_THIN);
              style.setBorderTop(HSSFCellStyle.BORDER_THIN);
              style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
              // 標題字體
              HSSFFont font = workbook.createFont();
              font.setColor(HSSFColor.BLACK.index);
              font.setFontHeightInPoints((short) 12);
              font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
              // 把字體應(yīng)用到當前的樣式
              style.setFont(font);
              // 生成并設(shè)置另一個樣式
              HSSFCellStyle style2 = workbook.createCellStyle();
              style2.setFillForegroundColor(HSSFColor.WHITE.index);
              style2.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
              style2.setBorderBottom(HSSFCellStyle.BORDER_THIN);
              style2.setBorderLeft(HSSFCellStyle.BORDER_THIN);
              style2.setBorderRight(HSSFCellStyle.BORDER_THIN);
              style2.setBorderTop(HSSFCellStyle.BORDER_THIN);
              style2.setAlignment(HSSFCellStyle.ALIGN_CENTER);
              style2.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
              // 內(nèi)容字體
              HSSFFont font2 = workbook.createFont();
              font2.setColor(HSSFColor.BLACK.index);
              font2.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);
              // 把字體應(yīng)用到當前的樣式
              style2.setFont(font2);
              
              // 聲明一個畫圖的頂級管理器
              HSSFPatriarch patriarch = sheet.createDrawingPatriarch();
              // 定義注釋的大小和位置,詳見文檔
              HSSFComment comment = patriarch.createComment(new HSSFClientAnchor(0, 0, 0, 0, (short) 4, 2, (short) 6, 5));
              // 設(shè)置注釋內(nèi)容
              comment.setString(new HSSFRichTextString("注釋!"));
              // 設(shè)置注釋作者,當鼠標移動到單元格上是可以在狀態(tài)欄中看到該內(nèi)容.
              comment.setAuthor("yuyidi");
          
              //產(chǎn)生表格標題行
              HSSFRow row = sheet.createRow(0);
              for (int i = 0; i < headers.length; i++) {
                 HSSFCell cell = row.createCell(i);
                 cell.setCellStyle(style);
                 HSSFRichTextString text = new HSSFRichTextString(headers[i]);
                 cell.setCellValue(text);
              }
          
              //遍歷集合數(shù)據(jù),產(chǎn)生數(shù)據(jù)行
              Iterator<T> it = dataset.iterator();
              int index = 0;
              while (it.hasNext()) {
                 index++;
                 row = sheet.createRow(index);
                 T t = (T) it.next();
                 //利用反射,根據(jù)javabean屬性的先后順序,動態(tài)調(diào)用getXxx()方法得到屬性值
                 Field[] fields = t.getClass().getDeclaredFields();
                 for (int i = 0; i < fields.length; i++) {
                    HSSFCell cell = row.createCell(i);
                    cell.setCellStyle(style2);
                    Field field = fields[i];
                    String fieldName = field.getName();
                    String getMethodName = "get"
                           + fieldName.substring(0, 1).toUpperCase()
                           + fieldName.substring(1);
                    try {
                        Class tCls = t.getClass();
                        Method getMethod = tCls.getMethod(getMethodName,
                              new Class[] {});
                        Object value = getMethod.invoke(t, new Object[] {});
                        //判斷值的類型后進行強制類型轉(zhuǎn)換
                        String textValue = null;
                       if (value instanceof Date) {
                           Date date = (Date) value;
                           SimpleDateFormat sdf = new SimpleDateFormat(pattern);
                            textValue = sdf.format(date);
                       }else if (value instanceof Double) {
                            textValue = formatter.format(value);
                        }  else if (value instanceof byte[]) {
                           // 有圖片時,設(shè)置行高為60px;
                           row.setHeightInPoints(60);
                           // 設(shè)置圖片所在列寬度為80px,注意這里單位的一個換算
                           sheet.setColumnWidth(i, (short) (35.7 * 80));
                           // sheet.autoSizeColumn(i);
                           byte[] bsValue = (byte[]) value;
                           HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0,
                                 1023, 255, (short) 6, index, (short) 6, index);
                           anchor.setAnchorType(2);
                           patriarch.createPicture(anchor, workbook.addPicture(
                                 bsValue, HSSFWorkbook.PICTURE_TYPE_JPEG));
                        } else{
                           //其它數(shù)據(jù)類型都當作字符串簡單處理
                           textValue = objToString(value);
                        }
                        //如果不是圖片數(shù)據(jù),就利用正則表達式判斷textValue是否全部由數(shù)字組成
                        if(textValue!=null){
                           Pattern p = Pattern.compile("^//d+(//.//d+)?$");  
                           Matcher matcher = p.matcher(textValue);
                           if(matcher.matches()){
                              //是數(shù)字當作double處理
                              cell.setCellValue(Double.parseDouble(textValue));
                           }else{
                              HSSFRichTextString richString = new HSSFRichTextString(textValue);
                              cell.setCellValue(richString);
                           }
                        }
                    } catch (SecurityException e) {
                        e.printStackTrace();
                    } catch (NoSuchMethodException e) {
                        e.printStackTrace();
                    } catch (IllegalArgumentException e) {
                        e.printStackTrace();
                    } catch (IllegalAccessException e) {
                        e.printStackTrace();
                    } catch (InvocationTargetException e) {
                        e.printStackTrace();
                    } finally {
                        //清理資源
                    }
                 }
          
              }
              try {
                 workbook.write(out);
              } catch (IOException e) {
                 e.printStackTrace();
              }
       }
        
       private String objToString(Object obj){
            return (obj == null) ? "" : obj.toString();
       }
}

標簽: 代碼

版權(quán)申明:本站文章部分自網(wǎng)絡(luò),如有侵權(quán),請聯(lián)系:west999com@outlook.com
特別注意:本站所有轉(zhuǎn)載文章言論不代表本站觀點!
本站所提供的圖片等素材,版權(quán)歸原作者所有,如需使用,請與原作者聯(lián)系。

上一篇: iOS實現(xiàn)毛玻璃效果,圖片模糊效果的三種方法

下一篇:HttpClients下載與入門