如何解析讀取excel數據


簡介

前段時間完成了一個輸出excel的任務,感覺挺開心的,用的就是Apache POI的jar包,Apache POI是Apache軟件基金會的開放源碼函式庫,POI提供API給Java程序對Microsoft Office格式檔案讀和寫的功能。其中

HSSF - 提供讀寫Microsoft Excel格式檔案的功能。
XSSF - 提供讀寫Microsoft  Excel OOXML格式檔案的功能。
HWPF - 提供讀寫Microsoft  Word格式檔案的功能。
HSLF - 提供讀寫Microsoft PowerPoint格式檔案的功能。
HDGF - 提供讀寫Microsoft  Visio格式檔案的功能。
有興趣的可以查看官方API  http://poi.apache.org/apidocs/index.html
今天,又學會了如何從excel中讀取想要的數據,覺得代碼以后可以復用,故貼上來留着以后用,話不多說,上源碼:

源碼

package com.excel;

import java.io.File;  
  
import java.io.FileInputStream;  
  
import java.io.IOException;  
  
import java.io.InputStream;  
  
import java.util.ArrayList;  
  
import java.util.List;  
  
import org.apache.poi.hssf.usermodel.HSSFCell;  
import org.apache.poi.hssf.usermodel.HSSFWorkbook;  
  
import org.apache.poi.ss.usermodel.Cell;  
  
import org.apache.poi.ss.usermodel.Row;  
  
import org.apache.poi.ss.usermodel.Sheet;  
  
import org.apache.poi.ss.usermodel.Workbook;  
  
import org.apache.poi.xssf.usermodel.XSSFWorkbook;  
  
/** 
 *  
 * @描述:測試excel讀取 
 *  
 *               導入的jar包 
 *  
 *               poi-3.17-beta1.jar
 *  
 *               poi-examples-3.17-beta1.jar
 *  
 *               poi-excelant-3.17-beta1.jar
 *  
 *               poi-ooxml-3.17-beta1.jar
 *  
 *               poi-ooxml-schemas-3.17-beta1.jar
 *  
 *               poi-scratchpad-3.17-beta1.jar
 *  
 *               jar包官網下載地址:http://poi.apache.org/download.html 
 *  
 *               poi-bin-3.17-beta1-20170701.zip
 */  
  
public class ImportExcel  
{  
  
    /** 總行數 */  
  
    private int totalRows = 0;  
  
    /** 總列數 */  
  
    private int totalCells = 0;  
  
    /** 錯誤信息 */  
  
    private String errorInfo;  
  
    /** 構造方法 */  
  
    public ImportExcel()  
    {  
  
    }  
  
    /** 
     *  
     * @描述:得到總行數 
     *  
     * @參數:@return 
     *  
     * @返回值:int 
     */  
  
    public int getTotalRows()  
    {  
  
        return totalRows;  
  
    }  
  
    /** 
     *  
     * @描述:得到總列數 
     *   
     * @參數:@return 
     *  
     * @返回值:int 
     */  
  
    public int getTotalCells()  
    {  
  
        return totalCells;  
  
    }  
  
    /** 
     *  
     * @描述:得到錯誤信息 
     *  
     * @參數:@return 
     *  
     * @返回值:String 
     */  
  
    public String getErrorInfo()  
    {  
  
        return errorInfo;  
  
    }  
  
    /** 
     *  
     * @描述:驗證excel文件 
     *  
     * @參數:@param filePath 文件完整路徑 
     *  
     * @參數:@return 
     *  
     * @返回值:boolean 
     */  
  
    public boolean validateExcel(String filePath)  
    {  
  
        /** 檢查文件名是否為空或者是否是Excel格式的文件 */  
  
        if (filePath == null || !(WDWUtil.isExcel2003(filePath) || WDWUtil.isExcel2007(filePath)))  
        {  
  
            errorInfo = "文件名不是excel格式";  
  
            return false;  
  
        }  
  
        /** 檢查文件是否存在 */  
  
        File file = new File(filePath);  
  
        if (file == null || !file.exists())  
        {  
  
            errorInfo = "文件不存在";  
  
            return false;  
  
        }  
  
        return true;  
  
    }  
  
    /** 
     *  
     * @描述:根據文件名讀取excel文件 
     *  
     * @參數:@param filePath 文件完整路徑 
     *  
     * @參數:@return 
     *  
     * @返回值:List 
     */  
  
    public List<List<String>> read(String filePath)  
    {  
  
        List<List<String>> dataLst = new ArrayList<List<String>>();  
  
        InputStream is = null;  
  
        try  
        {  
  
            /** 驗證文件是否合法 */  
  
            if (!validateExcel(filePath))  
            {  
  
                System.out.println(errorInfo);  
  
                return null;  
  
            }  
  
            /** 判斷文件的類型,是2003還是2007 */  
  
            boolean isExcel2003 = true;  
  
            if (WDWUtil.isExcel2007(filePath))  
            {  
  
                isExcel2003 = false;  
  
            }  
  
            /** 調用本類提供的根據流讀取的方法 */  
  
            File file = new File(filePath);  
  
            is = new FileInputStream(file);  
  
            dataLst = read(is, isExcel2003);  
  
            is.close();  
  
        }  
        catch (Exception ex)  
        {  
  
            ex.printStackTrace();  
  
        }  
        finally  
        {  
  
            if (is != null)  
            {  
  
                try  
                {  
  
                    is.close();  
  
                }  
                catch (IOException e)  
                {  
  
                    is = null;  
  
                    e.printStackTrace();  
  
                }  
  
            }  
  
        }  
  
        /** 返回最后讀取的結果 */  
  
        return dataLst;  
  
    }  
  
    /** 
     *  
     * @描述:根據流讀取Excel文件 
     *  
     * @參數:@param inputStream 
     *  
     * @參數:@param isExcel2003 
     *  
     * @參數:@return 
     *  
     * @返回值:List 
     */  
  
    public List<List<String>> read(InputStream inputStream, boolean isExcel2003)  
    {  
  
        List<List<String>> dataLst = null;  
  
        try  
        {  
  
            /** 根據版本選擇創建Workbook的方式 */  
  
            Workbook wb = null;  
  
            if (isExcel2003)  
            {  
                wb = new HSSFWorkbook(inputStream);  
            }  
            else  
            {  
                wb = new XSSFWorkbook(inputStream);  
            }  
            dataLst = read(wb);  
  
        }  
        catch (IOException e)  
        {  
  
            e.printStackTrace();  
  
        }  
  
        return dataLst;  
  
    }  
  
    /** 
     *  
     * @描述:讀取數據 
     *  
     * @參數:@param Workbook 
     *  
     * @參數:@return 
     *  
     * @返回值:List<List<String>> 
     */  
  
    private List<List<String>> read(Workbook wb)  
    {  
  
        List<List<String>> dataLst = new ArrayList<List<String>>();  
  
        /** 得到第一個shell */  
  
        Sheet sheet = wb.getSheetAt(0);  
  
        /** 得到Excel的行數 */  
  
        this.totalRows = sheet.getPhysicalNumberOfRows();  
  
        /** 得到Excel的列數 */  
  
        if (this.totalRows >= 1 && sheet.getRow(0) != null)  
        {  
  
            this.totalCells = sheet.getRow(0).getPhysicalNumberOfCells();  
  
        }  
  
        /** 循環Excel的行 */  
  
        for (int r = 0; r < this.totalRows; r++)  
        {  
  
            Row row = sheet.getRow(r);  
  
            if (row == null)  
            {  
  
                continue;  
  
            }  
  
            List<String> rowLst = new ArrayList<String>();  
  
            /** 循環Excel的列 */  
  
            for (int c = 0; c < this.getTotalCells(); c++)  
            {  
  
                Cell cell = row.getCell(c);  
  
                String cellValue = "";  
  
                if (null != cell)  
                {  
                    // 以下是判斷數據的類型  
                    switch (cell.getCellType())  
                    {  
                    case HSSFCell.CELL_TYPE_NUMERIC: // 數字  
                        cellValue = cell.getNumericCellValue() + "";  
                        break;  
  
                    case HSSFCell.CELL_TYPE_STRING: // 字符串  
                        cellValue = cell.getStringCellValue();  
                        break;  
  
                    case HSSFCell.CELL_TYPE_BOOLEAN: // Boolean  
                        cellValue = cell.getBooleanCellValue() + "";  
                        break;  
  
                    case HSSFCell.CELL_TYPE_FORMULA: // 公式  
                        cellValue = cell.getCellFormula() + "";  
                        break;  
  
                    case HSSFCell.CELL_TYPE_BLANK: // 空值  
                        cellValue = "";  
                        break;  
  
                    case HSSFCell.CELL_TYPE_ERROR: // 故障  
                        cellValue = "非法字符";  
                        break;  
  
                    default:  
                        cellValue = "未知類型";  
                        break;  
                    }  
                }  
  
                rowLst.add(cellValue);  
  
            }  
  
            /** 保存第r行的第c列 */  
  
            dataLst.add(rowLst);  
  
        }  
  
        return dataLst;  
  
    }  
  
    /** 
     *  
     * @描述:main測試方法 
     *  
     * @參數:@param args 
     *  
     * @參數:@throws Exception 
     *  
     * @返回值:void 
     */  
  
    public static void main(String[] args) throws Exception  
    {  
  
        ImportExcel poi = new ImportExcel();  
  
        List<List<String>> list = poi.read("D:/user.xls");  
  
        if (list != null)  
        {  
  
            for (int i = 0; i < list.size(); i++)  
            {  
  
                System.out.print("第" + (i) + "行");  
  
                List<String> cellList = list.get(i);  
  
                for (int j = 0; j < cellList.size(); j++)  
                {  
  
                    //System.out.print("    第" + (j + 1) + "列值:");  
  
                    System.out.print("    "+cellList.get(j));  
  
                }  

                System.out.println(); 
            }  
  
        }  
  
    }  
  
}  
  

 

package com.excel;

 
/** 
 *  
 * @描述:工具類 
 *  
 */  
  
class WDWUtil  
{  
  
    /** 
     *  
     * @描述:是否是2003的excel,返回true是2003 
     *  
     * @參數:@param filePath 文件完整路徑 
     *  
     * @參數:@return 
     *  
     * @返回值:boolean 
     */  
  
    public static boolean isExcel2003(String filePath)  
    {  
  
        return filePath.matches("^.+\\.(?i)(xls)$");  
  
    }  
  
    /** 
     *  
     * @描述:是否是2007的excel,返回true是2007 
     *  
     * @參數:@param filePath 文件完整路徑 
     *  
     * @參數:@return 
     *  
     * @返回值:boolean 
     */  
  
    public static boolean isExcel2007(String filePath)  
    {  
  
        return filePath.matches("^.+\\.(?i)(xlsx)$");  
  
    }  
  
} 

運行結果

說明

之所以使用了HSSF,又使用了XSSF,是為了兼容性。

使用HSSF讀取Excel2003以前(包括2003)的版本,使用XSSF讀取Excel2007的版本。

XSSF和HSSF雖然在不同的包里,但卻引用了同一接口Workbook,於是想到了這樣的讀取方法。

 /** 根據版本選擇創建Workbook的方式 */  
  
            Workbook wb = null;  
  
            if (isExcel2003)  
            {  
                wb = new HSSFWorkbook(inputStream);  
            }  
            else  
            {  
                wb = new XSSFWorkbook(inputStream);  
            }  

 

 
 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM