form表單提交,Servlet接收並讀取Excel文件


首先是jsp頁面:

<body scroll=no style="overflow-y:hidden;" onselectstart="return false">
    <div class="container" style="overflow-y:auto; padding-top:0px;" onscroll="hideAutoTiShi();">
        <div class="row">
            <form action="/ds/excelUploadServlet" enctype="multipart/form-data" method="post">
                <input id="file" type="file" name="file" value="選擇文件"/>
                <input id="submit" type="submit" onclick="undo();" value="提交"/>
            </form>
        </div>
    </div>
    <script src="jquery.min.js"></script>
    <script src="jquery.form.js"></script>
    <script src="excel_import.js"></script>
</body>

然后是Servlet的Java服務類

package com.inspur.dtdcommon.ds.cmd;

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 javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.FileItemFactory;
import org.apache.commons.fileupload.FileUploadException;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;
import org.loushang.next.dao.DaoFactory;

import com.inspur.dtdcommon.ds.dao.DtdCheckEntBasicInfoDao;
import com.inspur.dtdcommon.ds.dao.DtdCheckEntBasicInfoDetailDao;
import com.inspur.dtdcommon.ds.data.DtdCheckEntBasicInfo;
import com.inspur.dtdcommon.ds.data.DtdCheckEntBasicInfoDetail;
import com.inspur.dtdcommon.util.DtdUtil;
import com.inspur.dtdcommon.util.ImportExecl;

public class ExcelUploadServlet extends HttpServlet{
    private DtdUtil dtdUtil = DtdUtil.getInstance();
    private DtdCheckEntBasicInfoDao dao = (DtdCheckEntBasicInfoDao) DaoFactory
            .getDao("com.inspur.dtdcommon.ds.dao.DtdCheckEntBasicInfoDao");
    private DtdCheckEntBasicInfoDetailDao dao_detail = (DtdCheckEntBasicInfoDetailDao) DaoFactory
            .getDao("com.inspur.dtdcommon.ds.dao.DtdCheckEntBasicInfoDetailDao");
    public ExcelUploadServlet() {
        super();
    }
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        doPost(req, resp);
    }
    /**
     * //遍歷Excel文件,然后讀取文件封裝成List數據
     */
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        String zhi=null;
        FileItemFactory factory = new DiskFileItemFactory();
        ServletFileUpload upload = new ServletFileUpload(factory);
        InputStream inputStream = null;
        DtdCheckEntBasicInfo entity = new DtdCheckEntBasicInfo();
        List<DtdCheckEntBasicInfo> listInfo = new ArrayList<>();
        DtdCheckEntBasicInfoDetail bean = new DtdCheckEntBasicInfoDetail();
        List<DtdCheckEntBasicInfoDetail> listBean = new ArrayList<>();
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        /**
         * 讀取上傳文件
         */
        try {
            List  items = upload.parseRequest(req);
            Iterator iter = items.iterator();
            while (iter.hasNext()) {
                FileItem item = (FileItem) iter.next();
                if (!item.isFormField()) {
                    inputStream = item.getInputStream();
                }
            }
        } catch (FileUploadException e) {
            e.printStackTrace();
        }
        /**
         * POI遍歷Excel文件,然后讀取文件封裝成List數據
         */
        ImportExecl poi = new ImportExecl();
        List<List<String>> list = poi.read(inputStream, false);
        if (list != null) {
            for (int i = 1; i < list.size(); i++) {
                List<String> cellList = list.get(i);
                String ID = dtdUtil.getUUID().toUpperCase();
                entity.setId(ID);
                entity.setEntid(ID);
                entity.setEntname(cellList.get(0));
                entity.setAreaid(cellList.get(1));
                entity.setAreaname(cellList.get(2));
                entity.setRegisteraddress(cellList.get(3));
                entity.setAddress(cellList.get(4));
                entity.setSocietycreditcode(cellList.get(5));
                entity.setLerepname(cellList.get(6));
                entity.setLerepmobile(cellList.get(7));
                entity.setLereptelephonenum(cellList.get(8));
                entity.setIssueDate(cellList.get(9));
                entity.setValidDate(cellList.get(10));
                entity.setDataStatus("10");
                entity.setCreateTime(new Date());
                listInfo.add(entity);//處理生成List數組
                System.out.println();
                bean.setId(ID);
                bean.setEntid(ID);
                bean.setEntname(cellList.get(0));
                bean.setRecordInfo(cellList.get(11));
                bean.setFund(cellList.get(12));
                bean.setAssets(cellList.get(13));
                bean.setQualification(cellList.get(14));
                bean.setRegulators(cellList.get(15));
                bean.setBusinessScope(cellList.get(16));
                bean.setRegisteredCapital(cellList.get(17));
                bean.setEstablishTime(sdf.format(new Date()));
                bean.setBusinessStartDate(cellList.get(9));
                bean.setBusinessEndDate(cellList.get(10));
                bean.setRegistrationAuthority(cellList.get(18));
                bean.setApprovalDate(cellList.get(19));
                if("已登記".equals(cellList.get(20))){
                    bean.setRegistrationStatus("1");
                }else{
                    bean.setRegistrationStatus("0");
                }
                listBean.add(bean);
            }
          //遍歷Excel文件,然后讀取文件封裝成List數據,然后插入到數據中
            dao.batchInsert(listInfo);
            dao_detail.batchInsert(listBean);
        }else{
            throw new RuntimeException("請填寫Excel內容");
        }
        
    }
    

}
ImportExecl 讀取Excel的工具類

package com.inspur.dtdcommon.util;

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包
 *      該類使用到了以下jar:
 *      1、poi-ooxml-3.9.jar
 *      2、poi-3.9.jar
 */
public class ImportExecl {

    /**
     * main測試
     */
    public static void main(String[] args) throws Exception {
        ImportExecl poi = new ImportExecl();
        List<List<String>> list = poi.read("E:/批量導入客戶模板.xlsx");
        if (list != null) {
            for (int i = 0; i < list.size(); i++) {
                List<String> cellList = list.get(i);
                for (int j = 0; j < cellList.size(); j++) {
                    System.out.print("    " + cellList.get(j));
                }
                System.out.println();
            }
        }
    }

    //總行數
    private int totalRows = 0;

    //總列數
    private int totalCells = 0;

    //錯誤信息
    private String errorInfo;

    //構造方法
    public ImportExecl() {
    }

    /**
     * 得到總行數
     */
    public int getTotalRows() {
        return totalRows;
    }

    /**
     * 得到總列數
     */
    public int getTotalCells() {
        return totalCells;
    }

    /**
     * 得到錯誤信息
     */
    public String getErrorInfo() {
        return errorInfo;
    }

    /**
     * 驗證excel文件
     */
    public boolean validateExcel(String filePath) {
        /** 檢查文件名是否為空或者是否是Excel格式的文件 */
        if (filePath == null || !(CheckExcelUtil.isExcel2003(filePath) || CheckExcelUtil.isExcel2007(filePath))) {
            errorInfo = "文件名不是excel格式";
            return false;
        }

        /** 檢查文件是否存在 */
        File file = new File(filePath);
        if (file == null || !file.exists()) {
            errorInfo = "文件不存在";
            return false;
        }
        return true;
    }

    /**
     * 根據文件路徑讀取excel文件
     */
    public List<List<String>> read(String filePath) throws IOException {
        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 (CheckExcelUtil.isExcel2007(filePath)) {
                isExcel2003 = false;
            }

            /** 調用本類提供的根據流讀取的方法 */
            File file = new File(filePath);
            is = new FileInputStream(file);
            dataLst = read(is, isExcel2003);
            is.close();
            is = null;
        } 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 標識是否2003的excel。
 *                        true:是2003的excel,false:是2007的excel
     * @return
     * 
     * @擴展說明 
     *          如果使用springmvc的MultipartFile接收前端上傳的excel文件的話,可以使用MultipartFile的對象,獲取上傳的文件名稱,
     *          然后,可以通過 CheckExcelUtil 類的方法,接收文件名稱參數,來判斷excel所屬的版本。最后再調用此方法來讀取excel數據。
     * 
     */
    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;
    }

    /**
     * 讀取數據
     */
    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) {
                    cell.setCellType(HSSFCell.CELL_TYPE_STRING); //把所有的Excel內容當做字符串處理
                    // 以下是判斷數據的類型
                    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;
    }

}

class CheckExcelUtil {
    /**
     * 檢查是否是2003的excel,若是,則返回true
     */
    public static boolean isExcel2003(String filePath) {
        return filePath.matches("^.+\\.(?i)(xls)$");
    }

    /**
     * 檢查是否是2007的excel,若是,則返回true
     */
    public static boolean isExcel2007(String filePath) {
        return filePath.matches("^.+\\.(?i)(xlsx)$");
    }
}

 

最后不要忘了web.xml

<servlet>
        <servlet-name>ExcelUploadServlet</servlet-name>
        <servlet-class>com.inspur.dtdcommon.ds.cmd.ExcelUploadServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>ExcelUploadServlet</servlet-name>
        <url-pattern>/excelUploadServlet</url-pattern>
    </servlet-mapping>

 

然后就完成了Excel內容讀取,Excel如下:

 

 讀取Excel的時候,是從第二行開始讀取的,如果需要從第一行開始讀取修改ExcelUploadServlet.java文件中
for (int i = 1; i < list.size(); i++) {}
把其中的i=1修改成i=0就會從Excel第一行開始讀取。


免責聲明!

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



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