Java 讀取.xls模板並另存為.xls

C_ptx發表於2017-05-13
//讀取模板

        File file = new File("E:/doc/supplier-order-template.xls");

     HSSFWorkbook hssfWorkbook = new HSSFWorkbook(FileUtil.openInputStream(file));
        // 迴圈工作表Sheet
        for (int numSheet = 0; numSheet < hssfWorkbook.getNumberOfSheets(); numSheet++) {// 節點
            HSSFSheet hssfSheet = hssfWorkbook.getSheetAt(numSheet);
            if (hssfSheet == null) {
                continue;
            }
            for (int rowNum = 0; rowNum <= hssfSheet.getLastRowNum(); rowNum++) { // 迴圈行Row
                HSSFRow hssfRow = hssfSheet.getRow(rowNum);
                if (hssfRow == null) {
                    continue;//跳出離他最近的迴圈
                }
                
                for (int cellNum = 0; cellNum < hssfRow.getLastCellNum(); cellNum++) {// 迴圈列Cell
                    HSSFCell xssfCell = hssfRow.getCell(cellNum);
                    String cellValue = "";
                    if (xssfCell == null) {
                        cellValue = "";
                    } else {
                        if(xssfCell.getCellType()==HSSFCell.CELL_TYPE_STRING){//保證讀取的是字串格式
                            cellValue = String.valueOf(xssfCell.getStringCellValue());
                            cellValue=replaces(cellValue);
                            xssfCell.setCellValue(cellValue);
                        }
                    }
                   
                   
                }
            }
        }

 // 列印模板
        //把建立的內容寫入到輸出流中,並關閉輸出流
       HSSFSheet sheet = hssfWorkbook.createSheet("供應商訂單詳情");  
        try  
        {  
            FileOutputStream fout = new FileOutputStream("E:/students.xls");  
            hssfWorkbook.write(fout);  
            fout.close();  
        }  
        catch (Exception e)  
        {  
            e.printStackTrace();  
        }  
        System.out.println("success");


//spring 的替換方法

 public static String replaces(String str){
       System.out.println(str);//替換之前的方法
       PropertyPlaceholderHelper helper = new PropertyPlaceholderHelper("{", "}");
       Properties properties = new Properties();
       properties.setProperty("supplierName", "我是某某供應商");
       properties.setProperty("deliveryman", "美團送貨員");
       properties.setProperty("supplierMobile", "13122596297");
       properties.setProperty("purchaserName", "採購商名稱");
       String returnString=helper.replacePlaceholders(str, properties);
       System.out.println(returnString);
       return returnString;//替換之後的方法
   }




/** 
     * 找到需要插入的行數,並新建一個POI的row物件 
     * @param sheet 
     * @param rowIndex 
     * @param cellStyle 
     * @param orderProductBO 
     * @return 
     */  
     private HSSFRow createRow(HSSFSheet sheet, Integer rowIndex, HSSFWorkbook workbook, HSSFCellStyle cellStyle, OrderProductBO orderProductBO) {  
         
         if (sheet.getRow(rowIndex) != null) {  
             int lastRowNo = sheet.getLastRowNum();  
             sheet.shiftRows(rowIndex, lastRowNo, 1, true, false, false);  
         }
         
         HSSFRow row = sheet.createRow(rowIndex); 
         List<String> values = new ArrayList<String>();
         values.add(String.valueOf(orderProductBO.getOrderIndex() + 1));
         values.add(orderProductBO.getProdName());
         values.add(StringUtil.toString(orderProductBO.getActualQuantity()));
         values.add(StringUtil.toString(orderProductBO.getSupplierSkuPrice()));
         values.add(StringUtil.toString(orderProductBO.getTotalAmount()));
         
         for (int i = 0; i < values.size(); i++) {
             HSSFCell createCell = row.createCell(i);
             createCell.setCellValue(values.get(i));
             createCell.setCellStyle(cellStyle);
         }
         
         return row;  
     }  

相關文章