經過java反射實現的excel數據導出


Excel.javajava

@SuppressWarnings("deprecation")
    public static  <T> void ExportExcel(String title, String[] headers,Collection<T> dataset, OutputStream out) throws IOException, SecurityException, NoSuchFieldException, IllegalArgumentException, IllegalAccessException, NoSuchMethodException, InvocationTargetException{
             
                //第一種方法 經過實體反射機制
                // 聲明一個工做薄
                HSSFWorkbook workbook = new HSSFWorkbook();
                // 生成一個表格
                HSSFSheet sheet = workbook.createSheet(title);
                // 設置表格默認列寬度爲15個字節
                sheet.setDefaultColumnWidth((short) 15);
                // 生成一個樣式
                HSSFCellStyle style = workbook.createCellStyle();
                // 設置這些樣式
                style.setFillForegroundColor(HSSFColor.SKY_BLUE.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.VIOLET.index);
                font.setFontHeightInPoints((short) 12);
                font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
                // 把字體應用到當前的樣式
                style.setFont(font);
                // 生成並設置另外一個樣式
                HSSFCellStyle style2 = workbook.createCellStyle();
                style2.setFillForegroundColor(HSSFColor.LIGHT_YELLOW.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);
                // 生成另外一個字體
                HSSFFont font2 = workbook.createFont();
                font2.setBoldweight(HSSFFont.BOLDWEIGHT_NORMAL);
                // 把字體應用到當前的樣式
                style2.setFont(font2);
                // 產生表格標題行
                HSSFRow row = sheet.createRow(0);
                for (short i = 0; i < headers.length; i++) {
                    HSSFCell cell = row.createCell(i);
                    cell.setCellStyle(style);
                    HSSFRichTextString text = new HSSFRichTextString(headers[i]);
                    cell.setCellValue(text);
                }
                // 遍歷集合數據,產生數據行
                Iterator<T> it = dataset.iterator();
                int index = 0;
                while(it.hasNext()){
                    index++;
                    
                    row = sheet.createRow(index);//建立一行
                    Object t =  it.next();
                    // 利用反射,根據javabean屬性的前後順序,動態調用getXxx()方法獲得屬性值
                    Field[] fields = t.getClass().getDeclaredFields();//獲得全部屬性
                    //循環javabean屬性
                    for(short i=0;i<fields.length;i++){
                         HSSFCell cell = row.createCell(i);
                            cell.setCellStyle(style2);
                            //獲得T第一個javabean屬性
                            //fields[i].setAccessible(true);
                           // System.out.println("iiiiiiiiiiiii"+fields[i].get(t));
                            Field field = fields[i];
                            String fieldName = field.getName();//獲得get方法名
                            System.out.println(field);//private java.lang.Integer com.zcc.entity.AccountBean.userid
                            String[] split=field.toString().split(" ");//目的是判斷有沒有boolean類型的數據
                            String getMethodName="";
                            //bolean類型 Is開頭 其餘get開頭 獲得get方法
                            if("boolean".equalsIgnoreCase(split[1])||"bool".equalsIgnoreCase(split[1])){
                                getMethodName = "is"
                                        + fieldName.substring(0, 1).toUpperCase()
                                        + fieldName.substring(1);
                            }else {
                                getMethodName = "get"
                                        + fieldName.substring(0, 1).toUpperCase()
                                        + fieldName.substring(1);
                            }
                            Class tCls = t.getClass();
                            Method getMethod = tCls.getMethod(getMethodName,new Class[] {});
                            Object value = getMethod.invoke(t, new Object[] {});
                            //值已經獲得了  下面可能須要根據類型不一樣進行判斷 ,省略。。。。。
                            cell.setCellValue(value.toString());
                    }
                }
        
                workbook.write(out);
                out.close();
    }
相關文章
相關標籤/搜索