java上传Excel并解析存储数据库

本文档介绍了如何使用Java处理Excel文件,首先通过Maven引入相关依赖,然后在Controller层接收文件,最后在ServiceImpl层解析Excel内容并存储到数据库。
摘要由CSDN通过智能技术生成

一、引入maven依赖

		<dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>3.10-FINAL</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.10-FINAL</version>
        </dependency>

二、controller层

@RequestMapping(value = "/importWorkExcel", method = RequestMethod.POST, produces = "application/json;charset=utf-8")
    public void importWorkExcel(@RequestParam("excel") MultipartFile multipartFile) throws BusinessException,IOException, ParseException {
   
        workSpotService.importWorkExcel(multipartFile);
    }

三、serviceImpl层

@Override
    public void importWorkExcel(MultipartFile file) throws IOException, ParseException {
   

        //检查文件
        checkFile(file);
        //获得WorkBook对象
        Workbook workbook = getWorkBook(file);
        if(workbook != null){
   
            for(int sheetNum = 0;sheetNum < workbook.getNumberOfSheets();sheetNum++){
   
                //获得当前sheet表
                Sheet sheet = workbook.getSheetAt(sheetNum);
                if(sheet == null){
   
                    continue;
                }
                //获得当前sheet的开始行
                int firstRowNum = sheet.getFirstRowNum();
                //获得当前sheet的结束行
                int lastRowNum = sheet.getLastRowNum();
                //循环前两行之外的所有行
                for(int rowNum = firstRowNum+2;rowNum <= lastRowNum;rowNum++){
   
                    //获得当前行
                    Row row = sheet.getRow(rowNum);
                    if(row == null){
   
                        continue;
                    }
                    //获得当前行的开始行
                    int firstCellNum = row.getFirstCellNum();
                    //获得当前行的列数
                    int lastCellNum = row.getPhysicalNumberOfCells();
                    String workName = "";
                    String leaderName = "";
                    Integer leaderId = null;
                    Date startTime = null;
                    Date endTime = null;
                    String levelStr = "";
                    Integer level = null;
                    String majorStr = "";
                    Integer major = null;
                    for(int cellNum = 0; cellNum<row.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值