apache poi 获取excel文件数据内容(自动判断类型)

写好的工具类,可以直接用。自己懒得写,修改自:https://blog.csdn.net/l577125882/article/details/82848471?utm_source=blogxgwz5

package com.common.util;

import org.apache.poi.hssf.usermodel.HSSFDateUtil;
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.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.commons.CommonsMultipartFile;

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * @description: excel 工具類
 * @author: libie
 * @createTime: 2021/2/3 下午 04:07
 **/
public class ExcelUtil {

    //总行数
    private static int totalRows = 0;
    //总条数
    private static int totalCells = 0;
    //错误信息接收器
    private static String errorMsg;

    //获取总行数
    public int getTotalRows()  { return totalRows;}
    //获取总列数
    public int getTotalCells() {  return totalCells;}
    //获取错误信息
    public String getErrorInfo() { return errorMsg; }

    /**
     * 验证EXCEL文件
     * @param filePath
     * @return
     */
    public static boolean validateExcel(String filePath){
        if (filePath == null || !(WDWUtil.isExcel2003(filePath) || WDWUtil.isExcel2007(filePath))){
            errorMsg = "文件名不是excel格式";
            return false;
        }
        return true;
    }

    /**
     * 根据excel里面的内容读取客户信息
     * @param is 输入流
     * @param isExcel2003 excel是2003还是2007版本
     * @return
     * @throws IOException
     */
    public static List> getExcelInfo(InputStream is,boolean isExcel2003,int sheetNo){
        List> pds=null;
        try{
            /** 根据版本选择创建Workbook的方式 */
            Workbook wb = null;
            //当excel是2003时
            if(isExcel2003){
                wb = new HSSFWorkbook(is);
            }
            else{//当excel是2007时
                wb = new XSSFWorkbook(is);
            }
            //读取Excel里面的信息
            pds=readExcelValue(wb,sheetNo);
        }
        catch (IOException e)  {
            e.printStackTrace();
        }
        return pds;
    }

    /**
     * @description: 獲取excel文件中的數據
     * @author:  libie
     * @dateTime: 2021/2/3 下午 05:05
     *
     * @param file
     * @param sheetNo
     * @return
     */
    public static List> getExcelInfo(MultipartFile file, int sheetNo){
        //把spring文件上传的MultipartFile转换成CommonsMultipartFile类型
        CommonsMultipartFile cf= (CommonsMultipartFile)file; //获取本地存储路径
        //初始化客户信息的集合
        List> pds=new ArrayList<>();
        //初始化输入流
        InputStream is = null;
        try{
            //根据文件名判断文件是2003版本还是2007版本
            boolean isExcel2003 = WDWUtil.isExcel2003(file.getName());
            //根据新建的文件实例化输入流
            is = file.getInputStream();
            //根据excel里面的内容读取信息
            pds = getExcelInfo(is, isExcel2003,sheetNo);
            is.close();
        }catch(Exception e){
            e.printStackTrace();
        } finally{
            if(is !=null)
            {
                try{
                    is.close();
                }catch(IOException e){
                    e.printStackTrace();
                }
            }
        }
        return pds;
    }


    /**
     * 读取Excel里面的信息
     * @param wb
     * @return
     */
    private static List> readExcelValue(Workbook wb, int sheetNo){
        //得到第几个shell
        Sheet sheet=wb.getSheetAt(sheetNo);

        //得到Excel的行数
        totalRows=sheet.getPhysicalNumberOfRows();

        //得到Excel的列数(前提是有行数)
        if(totalRows>=1 && sheet.getRow(0) != null){
            totalCells=sheet.getRow(0).getPhysicalNumberOfCells();
        }
        //第一行的数据
        ArrayList keys = new ArrayList<>();
        //获取第一行的数据
        Row row1 = sheet.getRow(0);
        for (int i = 0; i < totalCells; i++) {
            Cell cell = row1.getCell(i);
            String value = String.valueOf(getValueFromCell(cell));
            keys.add(value);
        }
        List> pds=new ArrayList<>();
        Map pd;
        //循环Excel行数,从第二行开始。标题不入库
        for(int r=1;rInteger.MAX_VALUE || _2

 

你可能感兴趣的:(java,java,poi,excel)