标题springboot + POI 实现Excel文件上传,并且存到mysql数据库

标题springboot + POI 实现Excel文件上传,并且存到mysql数据库

1.pom.xml文件

<!-- POI -->
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi</artifactId>
			<version>3.8</version>
			<exclusions>
				<exclusion>
					<artifactId>commons-codec</artifactId>
					<groupId>commons-codec</groupId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-ooxml</artifactId>
			<version>3.8</version>
		</dependency>

2.实体类

/*
  @description:Excel文件相关参数
  @author:qiaoyn
  @date:2019/06/12
*/
@Data
public class ReadExcel {

    //总行数
    private int totalRows = 0;

    //总条数
    private int totalCells = 0;

    //错误信息的收集类
    private String errorMsg;
}

/*
  @description:组织结构信息实体类
  @author:qiaoyn
  @date:2109/06/04
*/
@Data
public class Organizemess {

    private int id;
    //姓名
    private String name;
    //一级部门
    private String firstDept;
    //二级部门
    private String secondDept;
    //岗位
    private String postion;
    //岗位描述
    private String postionDescribtion;
    //手机号
    private String phone;
}

3.mapper接口

/*
  @description:组织结构信息mapper接口
  @author:qiaoyn
  @date:2019/06/04
*/
@Mapper
public interface OrganizemessMapper {

    /*
      @description:组织结构信息
      @author:qiaoyn
      @date:2019/06/04
    */
    int insert(Organizemess organizemess);


}

4.service层

/*
  @description:组织结构信息业务逻辑层
  @author:qiaoyn
  @date:
*/
@Service
public interface OrganizemessService {

    /*
     @description:组织结构信息
     @author:qiaoyn
     @date:2019/06/04
   */
    int insert(Organizemess organizemess);

    /*
    * 读取excel文件
    * */
    String readExcelFile(MultipartFile file);
}

5.serviceimp层

/*
  @description:组织结构信息录入
  @author:qiaoyn
  @date:2019/06/04
*/
@Service
public class OrganizemessServiceimp implements OrganizemessService {

    @Autowired
    private OrganizemessMapper organizemessMapper;

    @Override
    public int insert(Organizemess organizemess) {
        return organizemessMapper.insert(organizemess);
    }


    /*
      @description:excel文件导入
      @author:qiaoyn
      @date:2019/06/13
    */
    @Override
    public String readExcelFile(MultipartFile file) {
        String result = "";
        OrganizeExcelUtil excel = new OrganizeExcelUtil();
        List<Organizemess> ilist = excel.getExcelInfo(file);
        if (ilist != null && !ilist.isEmpty()) {
            //不为空的话添加到数据库
            for (Organizemess organizemess : ilist) {
                organizemessMapper.insert(organizemess);
            }
            result = "上传成功";
        } else {
            result = "上传失败";
        }
        return result;
    }

}

6.controller层

/*
  @description:组织结构信息录入
  @author:qiaoyn
  @date:2019/06/04
*/
@RestController
@Api(value = "组织结构信息录入")
@RequestMapping(value = "/organize")
public class OrganizemessController {
    @Autowired
    private OrganizemessService organizemessService;

    /**
     * 文件上传
     * @param file
     * @param request
     * @param response
     * @return
     */
    @ApiOperation(value = "文件上传", notes = "/文件上传")
    @RequestMapping(value="/uploadExcel",method = RequestMethod.POST)
    public String uploadExcel(@RequestParam(value="file")MultipartFile file, HttpServletRequest request, HttpServletResponse response){
        String result = organizemessService.readExcelFile(file);
        return result;
    }
}

7.util工具类

/*
  @description:导入组织信息结构工具类
  @author:qiaoyn
  @date:2019/06/13
*/
public class OrganizeExcelUtil {
    /**
     * 先创建一个实体类
     */
    ReadExcel readExcel = new ReadExcel();
    /**
     * 读取Excel文件,获取信息集合
     * @param mFile
     * @return
     */
    public List<Organizemess> getExcelInfo(MultipartFile mFile) {
        //获取文件名
        String fileName = mFile.getOriginalFilename();
        List<Organizemess> ilist = null;
        try {
            //验证文件名是否合格
            if(!validateExcel(fileName)){
            //不合格的话直接return
                return null;
            }
            //根据文件名判断是2003版本的还是2007版本的
            boolean isExcel2003 = true;
            if(isExcel2007(fileName)){
                isExcel2003 = false;
            }
            ilist= createExcel(mFile.getInputStream(), isExcel2003);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return ilist;
    }
    /**
     * 判断是不是2003版本的excel
     * @param filePath
     * @return
     */
    public static boolean isExcel2003(String filePath){
        return filePath.matches("^.+\\.(?i)(xls)$");
    }
    /**
     * 判断是不是2007版本的excel
     * @param filePath
     * @return
     */
    public static boolean isExcel2007(String filePath){
        return filePath.matches("^.+\\.(?i)(xlsx)$");
    }
    /**
     * 判断是不是excel文件格式
     * @param filePath
     * @return
     */
    public boolean validateExcel(String filePath){
        if(filePath ==null||!(isExcel2003(filePath) || isExcel2007(filePath))){
            readExcel.setErrorMsg("文件名不是excel格式");
            return false;
        }
        return true;
    }
    /**
     * 读取excel里面的信息
     */
    public List<Organizemess> readExcelValue(Workbook wb){
        List<Organizemess> ilist=new ArrayList<>();
        //先得到一个sheet
        Sheet sheet = wb.getSheetAt(0);
        //得到excel里面的行数
        int totalRows = sheet.getPhysicalNumberOfRows();
        readExcel.setTotalRows(totalRows);
        //得到excel里面的列,前提是有行
        //大于1是因为我从第二行就是数据了,这个大家看情况而定
        if(totalRows >1 && sheet.getRow(0)!=null){
            int totalCells = sheet.getRow(0).getPhysicalNumberOfCells();
            readExcel.setTotalCells(totalCells);
        }
        for (int r = 1 ; r < totalRows; r++){
            Row row = sheet.getRow(r);
            if(row == null){
                continue;//如果行为空的话直接中断
            }
            Organizemess organizemess = new Organizemess();
            //循环xcel的列
            for(int c = 0; c<readExcel.getTotalCells() ; c++){
                Cell cell = row.getCell(c);
                if(cell != null){
            //根据excel需要导入的列数来写
                    if(c == 0){
                        if(cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC){
            //如果是纯数字,比如你写的是38,
            //cell.getNumericCellValue()获得是38.0,
            //通过截取字符串去掉.0获得25
                            String name = String.valueOf(cell.getNumericCellValue());
            //截取如果length()-2为零了,就说明只有一位数,就直接截取0到1就行
                            organizemess.setName(name.substring(0,name.length()-2>0?name.length()-2:1));
                        }else{
            //如果不是纯数字可以直接获得名称
                            organizemess.setName(cell.getStringCellValue());
                        }
                    }else if (c == 1){
                        if(cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC){
                            String firstDept = String.valueOf(cell.getNumericCellValue());
                            organizemess.setFirstDept(firstDept.substring(0,firstDept.length()-2>0?firstDept.length()-2:1));
                        }else{
                            organizemess.setFirstDept(cell.getStringCellValue());
                        }
                    }else if( c == 2){
                        if(cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC){
                            String secondDept = String.valueOf(cell.getNumericCellValue());
                            organizemess.setSecondDept(secondDept.substring(0, secondDept.length()-2>0?secondDept.length()-2:1));
                        }else{
                            organizemess.setSecondDept(cell.getStringCellValue());
                        }
                    }else if( c == 3){
                        if(cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC){
                            String postion = String.valueOf(cell.getNumericCellValue());
                            organizemess.setPostion(postion.substring(0, postion.length()-2>0?postion.length()-2:1));
                        }else{
                            organizemess.setPostion(cell.getStringCellValue());
                        }
                    }else if( c == 4){
                        if(cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC){
                            String postionDescribtion = String.valueOf(cell.getNumericCellValue());
                            organizemess.setPostionDescribtion(postionDescribtion.substring(0, postionDescribtion.length()-2>0?postionDescribtion.length()-2:1));
                        }else{
                            organizemess.setPostionDescribtion(cell.getStringCellValue());
                        }
                    }else if( c == 5){
                        if(cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC){
                            String phone = String.valueOf(cell.getNumericCellValue());
                            organizemess.setPhone(phone.substring(0, phone.length()-2>0?phone.length()-2:1));
                        }else{
                            organizemess.setPhone(cell.getStringCellValue());
                        }
                    }
                }
            }
            //最后将这些全部添加到ilist中
            ilist.add(organizemess);
        }
        return ilist;
    }
    public List<Organizemess> createExcel(InputStream is , boolean isExcel2003){
        List<Organizemess> ilist = null;
        try {
            Workbook wb = null;
            if(isExcel2003){
                //如果是2003版本的就new一个2003的wb出来
                wb = new HSSFWorkbook(is);
            }else{
                //否则就new 一个2007版的出来
                wb = new XSSFWorkbook(is);

            }
                //再让wb去解析readExcelValue(Workbook wb)方法
            ilist = readExcelValue(wb);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return ilist;
    }

}

8.测试
依旧是采用swagger测试,这样方便操作;
8.1首先准备好上传文件
在这里插入图片描述
8.2swagger测试
在这里插入图片描述
8.3数据库中的信息
在这里插入图片描述
好了,到此整个 过程已经结束,希望能给大家带来帮助,谢谢。

  • 5
    点赞
  • 22
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值