excel解析



import java.io.File;

import java.io.FileInputStream;

import java.io.IOException;

import java.io.InputStream;

import java.text.SimpleDateFormat;
import java.util.ArrayList;

import java.util.Date;
import java.util.Iterator;
import java.util.List;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang.time.DateFormatUtils;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFDateUtil;
import org.apache.poi.hssf.usermodel.HSSFRow;
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;

/**
 * 〈〉<br>
 * 〈解析excel,存List<List<String>>中〉
 * <当行全为空时,不存储List,当连续两行为空时,读取结束>
 * *@Date: Created in 11:33 2018/4/16
 *
 * @author 
 * @see [相关类/方法](可选)
 * @since [产品/模块版本] (可选)
 */
public class ImportExecl {
    /** 总行数 */
    private int totalRows = 0;
    /** 总列数 */
    private int totalCells = 0;
    /** 错误信息 */
    private String errorInfo;

    /** 构造方法 */
    public ImportExecl() {

    }

    /**
     *
     * @描述:得到总行数
     *
     * @参数:@return
     *
     * @返回值:int
     */

    public int getTotalRows() {
        return totalRows;
    }

    /**
     *
     * @描述:得到总列数
     *
     * @返回值: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 文件绝对路径
     * @param line 从第line+1行开始读
     * @返回值:List
     */

    public List<List<String>> read(String filePath,int line) {

        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,line);
            is.close();
        } catch (Exception ex) {
            ex.printStackTrace();
        } finally {
            if (is != null) {
                try {
                    is.close();
                } catch (IOException e) {
                    is = null;
                    e.printStackTrace();
                }
            }
        }

        /** 返回最后读取的结果 */
        return dataLst;
    }

    /**
     *
     * @描述:根据流读取Excel文件
     *
     * @参数:@return
     *
     * @返回值:List
     */

    public List<List<String>> read(InputStream inputStream, boolean isExcel2003,int line) {
        List<List<String>> dataLst = null;
        try {
            /** 根据版本选择创建Workbook的方式 */
            Workbook wb = null;
            if (isExcel2003) {
                wb = new HSSFWorkbook(inputStream);
            } else {
                wb = new XSSFWorkbook(inputStream);
            }
            dataLst = read(wb,line);
        }
        catch (IOException e) {
            e.printStackTrace();
        }
        return dataLst;
    }

    /**
     *
     * @描述:读取数据
     *
     *
     * @返回值:List<List<String>>
     */
    private List<List<String>> read(Workbook wb,int line) {
        //记列为空的数字
        int num=0;
        //记行为空的数字
        int n=0;
        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的行,从第四行开始读 */
       a: for (int r = line; 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:
                            if (HSSFDateUtil.isCellDateFormatted(cell)){
                                Date date = cell.getDateCellValue();
                                cellValue = DateFormatUtils.format(date, "yyyy-MM-dd HH:mm:ss");
                            }else {
                                cellValue = (int) cell.getNumericCellValue() + "";
                            }
                            break;
                        // 字符串
                        case HSSFCell.CELL_TYPE_STRING:
                            cellValue = cell.getStringCellValue();
                            break;
                        // Boolean
                        case HSSFCell.CELL_TYPE_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);
            }
            //遍历每列是否为空
            for (String s : rowLst) {
                if (s==null || s.equals("")){
                    num++;
                }
            }
            //全为空不保存,否则n+1
            if(num<this.getTotalCells()){
                /** 保存第r行的第c列 */
                dataLst.add(rowLst);
            }else {
                n++;
            }
           num=0;
            //1行为空,跳出循环
            if(n>1){
                break a;
            }
        }
        return dataLst;
    }

}



/**
 *
 * @描述:工具类
 *
 * @作者:建宁
 *
 * @时间:2012-08-29 下午16:30:40
 */

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)$");
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值