1. 程式人生 > >java使用POI將資料匯出放入Excel

java使用POI將資料匯出放入Excel

本文主要是將資料庫取出的資料按照自定義的行列格式匯出到excel中,POI則是實現我們需求所用到的技術。

  • POI介紹
  • 使用spring boot匯入相關依賴
  • 獲取資料(自行處理)
  • 完整程式碼例項:建立excel,將資料寫入excel

####1.POI介紹
要想使用POI對Excel進行操作,我們需要先了解一下Excel的兩種版本:一種是97-2003版本副檔名是“.xls”;一種是2007版本副檔名是“.xlsx”。POI分別針對這兩種版本需要匯入的jar包不同,操作類也不同。

HSSF:操作的是.xls;XSSF:操作的是.xlsx。

不管哪種操作,基本思路都是一致,先要對應一個Excel檔案,然後在對應檔案中的某個sheet,接下來在操作某一行和這一行中的某一列。對應POI包:檔案(webbook)、sheet(sheet)、行(row)和具體單元格(cell)。

####2.通過spring boot匯入依賴
為了使用java操控excel,需要將相關的jar引入,對於HSSF只需要匯入POI.jar,而XSSF則需要匯入四個jar,具體匯入見下面程式碼
將程式碼塊的依賴放入工程的pom.xml檔案中就可以了。
工程不是spring boot的需要手動將下面jar匯入。

<!-- HSSF需要引入的 -->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>RELEASE</version>
        </dependency>

<!-- XSSF需要引入的 -->
        <dependency>
            <groupId>org.apache.xmlbeans</groupId>
            <artifactId>xmlbeans</artifactId>
            <version>2.6.0</version>
        </dependency>
        <dependency>
            <groupId>dom4j</groupId>
            <artifactId>dom4j</artifactId>
            <version>1.6.1</version><!--$NO-MVN-MAN-VER$ -->
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>3.9</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.9</version>
        </dependency>

####3完整程式碼例項:簡單的建立excel,將資料寫入excel
依賴匯入成功之後,就可以開始進行excel的生成。詳細步驟在程式碼註釋中有說明。

   
    /**
     * 建立excel
     * @param listresult 是需要寫入excel中的資料,通過map中的k-v來將資料寫入excel
     * @return
     */
    private XSSFWorkbook createUserListExcel(List<Map<String,Object>> listresult){
        // 1.建立HSSFWorkbook,一個HSSFWorkbook對應一個Excel檔案
        XSSFWorkbook wb = new XSSFWorkbook();
        // 2.在workbook中新增一個sheet,對應Excel檔案中的sheet
        XSSFSheet sheet = wb.createSheet("sheet1");
        // 3.設定表頭,即每個列的列名
        String[] titel = {"rowName1","rowName2","rowName3","rowName4"};
        // 3.1建立第一行
        XSSFRow row = sheet.createRow(0);   
        // 此處建立一個序號列
        row.createCell(0).setCellValue("序號");
        // 將列名寫入
        for (int i = 0; i < titel.length; i++) {
            // 給列寫入資料,建立單元格,寫入資料
            row.createCell(i+1).setCellValue(titel[i]);
        }
        // 寫入正式資料
        for (int i = 0; i < listresult.size(); i++) {
            // 建立行
            row = sheet.createRow(i+1);
            // 序號
            row.createCell(0).setCellValue(i+1);
           
            row.createCell(1).setCellValue(listresult.get(i).get("rowKey1").toString());
            sheet.autoSizeColumn(1, true);
            
            row.createCell(2).setCellValue(listresult.get(i).get("rowKey2").toString());
            
            row.createCell(3).setCellValue(listresult.get(i).get("rowKey3").toString());
            
            row.createCell(4).setCellValue(listresult.get(i).get("rowKey4").toString());
        }
        /**
         * 上面的操作已經是生成一個完整的檔案了,只需要將生成的流轉換成檔案即可;
         * 下面的設定寬度可有可無,對整體影響不大
         */
        // 設定單元格寬度
        int curColWidth = 0;
        for (int i = 0; i <= titel.length; i++) {
            // 列自適應寬度,對於中文半形不友好,如果列內包含中文需要對包含中文的重新設定。
            sheet.autoSizeColumn(i, true);
            // 為每一列設定一個最小值,方便中文顯示
            curColWidth = sheet.getColumnWidth(i);  
            if(curColWidth<2500){
                sheet.setColumnWidth(i, 2500); 
            }
            // 第3列文字較多,設定較大點。
            sheet.setColumnWidth(3, 8000);          
        }
        return wb;
    }
 /**
     * 使用者列表匯出
     * @param userForm
     */
    private String downUserList(List<Map<String,Object>> listresult){
         // getTime()是一個返回當前時間的字串,用於做檔名稱
        String name = getTime();
        //  csvFile是我的一個路徑,自行設定就行
        String ys = csvFile + "//" + name + ".xlsx";
        // 1.生成Excel
        XSSFWorkbook userListExcel = createUserListExcel(listresult);
        try{
            // 輸出成檔案
            File file = new File(csvFile);
            if(file.exists() || !file.isDirectory()) {
                file.mkdirs();
            }
            // TODO 生成的wb物件傳輸
            FileOutputStream outputStream = new FileOutputStream(new File(ys));
            userListExcel.write(outputStream);
            outputStream.close();
        }catch(Exception e){
            e.printStackTrace();
        }
        return name;
    }   

小白一枚,因為工作中多次用到了這個,所以簡單的記錄一下,如有問題,歡迎指正。
簡書釋出地址
部落格園釋出地址