java使用POI操做excel文件,實現批量導出,和導入

1、POI的定義

JAVA中操做Excel的有兩種比較主流的工具包: JXL 和 POI 。jxl 只能操做Excel 95, 97, 2000也即以.xls爲後綴的excel。而poi能夠操做Excel 95及之後的版本,便可操做後綴爲 .xls 和 .xlsx兩種格式的excel。java

POI全稱 Poor Obfuscation Implementation,直譯爲「可憐的模糊實現」,利用POI接口能夠經過JAVA操做Microsoft office 套件工具的讀寫功能。官網:http://poi.apache.org ,POI支持office的全部版本,首先去官網下載以下界面:apache

下載完後,打開「poi-bin-3.15-20160924.tar.gz」獲取操做excel須要的jar包,並將這些jar包複製到項目中。對於只操做2003 及之前版本的excel,只須要poi-3.15.jar ,若是須要同時對2007及之後版本進行操做則須要複製微信

poi-ooxml-3.15.jar
poi-ooxml-schemas-3.15.jarapp

以及複製在ooxml-lib目錄下的xmlbeans-2.6.0.jar(但不知爲什麼,我下的jar文件中沒有dom4j.jar)這個文件,仍是加上dom4j.jar,防止報錯.dom

 

2、使用junit進行操做Excel測試

首先明確Excel工做簿對象、工做表對象、行對象、以及單元格對象。ide

具體代碼以下注意要分清楚到底是2007版本之前,仍是2007版本之後(包括2007版本):下面這段代碼是2007版本之前的:函數

這段代碼只是將數據寫入到Excel文件中建立工具

public static void main(String[] args) throws Exception {
        /**
         * 注意這只是07版本之前的作法對應的excel文件的後綴名爲.xls
         * 07版本和07版本之後的作法excel文件的後綴名爲.xlsx
         */
        //建立新工做簿
        HSSFWorkbook workbook = new HSSFWorkbook();
        //新建工做表
        HSSFSheet sheet = workbook.createSheet("hello");
        //建立行,行號做爲參數傳遞給createRow()方法,第一行從0開始計算
        HSSFRow row = sheet.createRow(0);
        //建立單元格,row已經肯定了行號,列號做爲參數傳遞給createCell(),第一列從0開始計算
        HSSFCell cell = row.createCell(2);
        //設置單元格的值,即C1的值(第一行,第三列)
        cell.setCellValue("hello sheet");
        //輸出到磁盤中
        FileOutputStream fos = new FileOutputStream(new File("E:\\root\\sheet\\11.xls"));
        workbook.write(fos);
        workbook.close();
        fos.close();
    }

結果以下圖:測試

 

一樣也能夠對讀取Excel文件,獲得Excel文件的數據,並將其打印出來,代碼以下:字體

 

@Test
    public void testReadExcel() throws Exception
    {
        //建立輸入流
        FileInputStream fis = new FileInputStream(new File("E:\\root\\sheet\\11.xls"));
        //經過構造函數傳參
        HSSFWorkbook workbook = new HSSFWorkbook(fis);
        //獲取工做表
        HSSFSheet sheet = workbook.getSheetAt(0);
        //獲取行,行號做爲參數傳遞給getRow方法,第一行從0開始計算
        HSSFRow row = sheet.getRow(0);
        //獲取單元格,row已經肯定了行號,列號做爲參數傳遞給getCell,第一列從0開始計算
        HSSFCell cell = row.getCell(2);
        //設置單元格的值,即C1的值(第一行,第三列)
        String cellValue = cell.getStringCellValue();
        System.out.println("第一行第三列的值是"+cellValue);
        workbook.close();
        fis.close();
    }

結果以下圖:

 

上面操做的都是07版本之前的Excel文件,即後綴名爲.xls,07和07版本之後的Excel文件後綴名爲.xlsx相應的工做簿的對象名也改成:

//建立工做簿
        XSSFWorkbook workbook = new XSSFWorkbook();

代碼以下,建立excel文件並保存數據到excel文件:

@Test
    public void write07() throws Exception
    {
        //建立工做簿
        XSSFWorkbook workbook = new XSSFWorkbook();
        //新建工做表
        XSSFSheet sheet = workbook.createSheet("hello");
        //建立行,0表示第一行
        XSSFRow row = sheet.createRow(0);
        //建立單元格行號由row肯定,列號做爲參數傳遞給createCell;第一列從0開始計算
        XSSFCell cell = row.createCell(2);
        //給單元格賦值
        cell.setCellValue("hello sheet");
        //建立輸出流
        FileOutputStream fos = new FileOutputStream(new File("E:\\root\\sheet\\hello.xlsx"));
        workbook.write(fos);
        workbook.close();
        fos.close();
    }

 

與之對應的讀取數據,代碼以下:

@Test
    public void read07() throws Exception
    {
        //建立輸入流
        FileInputStream fis = new FileInputStream(new File("E:\\root\\sheet\\hello.xlsx"));
        //由輸入流獲得工做簿
        XSSFWorkbook workbook = new XSSFWorkbook(fis);
        //獲得工做表
        XSSFSheet sheet = workbook.getSheet("hello");
        //獲得行,0表示第一行
        XSSFRow row = sheet.getRow(0);
        //建立單元格行號由row肯定,列號做爲參數傳遞給createCell;第一列從0開始計算
        XSSFCell cell = row.getCell(2);
        //給單元格賦值
        String cellValue = cell.getStringCellValue();
        System.out.println("C1的值是"+cellValue);
        int a[][] = new int[10][30];
        for(int i=0;i<a.length;i++)
        {
            System.out.println(i);
        }
        workbook.close();
        fis.close();
    }

問題出現了,也能夠解釋爲需求:當不能肯定到底是讀取07之前(例如2003,95,97,2000)仍是07版本之後的Excel文件,咱們固然但願程序可以自動識別,並建立相應的對象,去操做excel文件,代碼以下:

@Test
    public void reda03and07() throws Exception
    {
        //讀取03或07的版本
        String filePath = "E:\\root\\sheet\\hello.xlsx";
        if(filePath.matches("^.+\\.(?i)((xls)|(xlsx))$"))
        {
            FileInputStream fis = new FileInputStream(filePath);
            boolean is03Excell = filePath.matches("^.+\\.(?i)(xls)$")?true:false;
            Workbook workbook = is03Excell ? new HSSFWorkbook(fis):new XSSFWorkbook(fis);
            Sheet sheet = workbook.getSheetAt(0);
            Row row = sheet.getRow(0);
            Cell cell = row.getCell(2);
            System.out.println("第一行第一列的數據是:"+cell.getStringCellValue());
        }
    }

學完了上面幾個例子,接下來就是應用它了,咱們常常須要在一個頁面中批量導出和批量導出數據,這裏就涉及到對excel文件的操做,固然還有其它的文件格式,咱們使用一個lList<User> list 來保存,在這裏咱們寫了一個ExcelUtil這個工具類:代碼以下:

 

 

package com.ittax.core.util;

import java.util.List;

import javax.servlet.ServletOutputStream;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFFont;
import org.apache.poi.hssf.usermodel.HSSFHeader;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.util.CellRangeAddress;

import com.ittax.nsfw.user.entity.User;

/**
 * excel工具類,支持批量導出
 * @author lizewu
 *
 */
public class ExcelUtil {
    
    /**
     * 將用戶的信息導入到excel文件中去
     * @param userList 用戶列表
     * @param out 輸出表
     */
    public static void exportUserExcel(List<User> userList,ServletOutputStream out)
    {
        try{
            //1.建立工做簿
            HSSFWorkbook workbook = new HSSFWorkbook();
            //1.1建立合併單元格對象
            CellRangeAddress callRangeAddress = new CellRangeAddress(0,0,0,4);//起始行,結束行,起始列,結束列
            //1.2頭標題樣式
            HSSFCellStyle headStyle = createCellStyle(workbook,(short)16);
            //1.3列標題樣式
            HSSFCellStyle colStyle = createCellStyle(workbook,(short)13);
            //2.建立工做表
            HSSFSheet sheet = workbook.createSheet("用戶列表");
            //2.1加載合併單元格對象
            sheet.addMergedRegion(callRangeAddress);
            //設置默認列寬
            sheet.setDefaultColumnWidth(25);
            //3.建立行
            //3.1建立頭標題行;而且設置頭標題
            HSSFRow row = sheet.createRow(0);
            HSSFCell cell = row.createCell(0);
        
            //加載單元格樣式
            cell.setCellStyle(headStyle);
            cell.setCellValue("用戶列表");
            
            //3.2建立列標題;而且設置列標題
            HSSFRow row2 = sheet.createRow(1);
            String[] titles = {"用戶名","帳號","所屬部門","性別","電子郵箱"};
            for(int i=0;i<titles.length;i++)
            {
                HSSFCell cell2 = row2.createCell(i);
                //加載單元格樣式
                cell2.setCellStyle(colStyle);
                cell2.setCellValue(titles[i]);
            }
            
            
            //4.操做單元格;將用戶列表寫入excel
            if(userList != null)
            {
                for(int j=0;j<userList.size();j++)
                {
                    //建立數據行,前面有兩行,頭標題行和列標題行
                    HSSFRow row3 = sheet.createRow(j+2);
                    HSSFCell cell1 = row3.createCell(0);
                    cell1.setCellValue(userList.get(j).getName());
                    HSSFCell cell2 = row3.createCell(1);
                    cell2.setCellValue(userList.get(j).getAccount());
                    HSSFCell cell3 = row3.createCell(2);
                    cell3.setCellValue(userList.get(j).getDept());
                    HSSFCell cell4 = row3.createCell(3);
                    cell4.setCellValue(userList.get(j).isGender()?"男":"女");
                    HSSFCell cell5 = row3.createCell(4);
                    cell5.setCellValue(userList.get(j).getEmail());
                }
            }
            //5.輸出
            workbook.write(out);
            workbook.close();
            //out.close();
        }catch(Exception e)
        {
            e.printStackTrace();
        }
    }
    
    /**
     * 
     * @param workbook
     * @param fontsize
     * @return 單元格樣式
     */
    private static HSSFCellStyle createCellStyle(HSSFWorkbook workbook, short fontsize) {
        // TODO Auto-generated method stub
        HSSFCellStyle style = workbook.createCellStyle();
        style.setAlignment(HSSFCellStyle.ALIGN_CENTER);//水平居中
        style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);//垂直居中
        //建立字體
        HSSFFont font = workbook.createFont();
        font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
        font.setFontHeightInPoints(fontsize);
        //加載字體
        style.setFont(font);
        return style;
    }
}

 

 緊接着就是在UseService中調用方法並寫出exportExcel方法:

@Override
    public void exportExcel(List<User> userList, ServletOutputStream out) {
        // TODO Auto-generated method stub
        ExcelUtil.exportUserExcel(userList, out);
    }

    @Override
    public void importExcel(File file, String excelFileName) {
        // TODO Auto-generated method stub
        //1.建立輸入流
        try {
            FileInputStream inputStream = new FileInputStream(file);
            boolean is03Excel = excelFileName.matches("^.+\\.(?i)(xls)$");
            //1.讀取工做簿
            Workbook workbook = is03Excel?new HSSFWorkbook(inputStream):new XSSFWorkbook(inputStream);
            //2.讀取工做表
            Sheet sheet = workbook.getSheetAt(0);
            //3.讀取行
            //判斷行數大於二,是由於數據從第三行開始插入
            if(sheet.getPhysicalNumberOfRows() > 2)
            {
                User user = null;
                //跳過前兩行
                for(int k=2;k<sheet.getPhysicalNumberOfRows();k++ )
                {
                    //讀取單元格
                    Row row0 = sheet.getRow(k);
                    user = new User();
                    //用戶名
                    Cell cell0 = row0.getCell(0);
                    user.setName(cell0.getStringCellValue());
                    //帳號
                    Cell cell1 = row0.getCell(1);
                    user.setAccount(cell1.getStringCellValue());
                    //所屬部門
                    Cell cell2 = row0.getCell(2);
                    user.setDept(cell2.getStringCellValue());
                    //設置性別
                    Cell cell3 = row0.getCell(3);
                    boolean gender = cell3.getStringCellValue() == "男"?true:false;
                    user.setGender(gender);
                    //設置手機
                    String mobile = "";
                    Cell cell4 = row0.getCell(4);
                    try {
                        mobile = cell4.getStringCellValue();
                    } catch (Exception e) {
                        // TODO Auto-generated catch block
                        double dmoblie = cell4.getNumericCellValue();
                        mobile = BigDecimal.valueOf(dmoblie).toString();
                    }
                    user.setMobile(mobile);
                    //設置電子郵箱
                    Cell cell5 = row0.getCell(5);
                    user.setEmail(cell5.getStringCellValue());
                    //默認用戶密碼是123456
                    user.setPassword("123456");
                    //用戶默認狀態是有效
                    user.setState(User.USER_STATE_VALIDE);
                    //保存用戶
                    save(user);
                }
            }
            workbook.close();
            inputStream.close();
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

最後就是在Action中調用service方法:

//導出用戶列表
        public void exportExcel()
        {
            try
            {
                //1.查找用戶列表
                userList = userService.findObjects();
                //2.導出
                HttpServletResponse response = ServletActionContext.getResponse();
                //這裏設置的文件格式是application/x-excel
                response.setContentType("application/x-excel");
                response.setHeader("Content-Disposition", "attachment;filename=" + new String("用戶列表.xls".getBytes(), "ISO-8859-1"));
                ServletOutputStream outputStream = response.getOutputStream();
                userService.exportExcel(userList, outputStream);
                if(outputStream != null)
                    outputStream.close();
            }catch(Exception e)
            {
                e.printStackTrace();
            }
        }
        
        public String importExcel()
        {
            if(userExcel!= null)
            {
                //判斷是不是Excel文件
                if(userExcelFileName.matches("^.+\\.(?i)((xls)|(xlsx))$"))
                {
                    userService.importExcel(userExcel, userExcelFileName);
                }
            }
            return"list";
        }

注意的是應該使用ServletOutputStream這個類,最後實現了批量導出和導入數據。

導出用戶結果以下圖;

導入結果以下圖;

導入前:

 

 

導入後的結果;

ok,關於POI操做EXCEL文件就暫時到此爲止了

歡迎你們關注個人微信公衆號,更多幹貨請關注:stormli

相關文章
相關標籤/搜索