Hutool EXcel导入导出 You need to add dependency of ‘poi-ooxml‘ to your project, and version

本文介绍了在Java项目中使用Hutool进行Excel导入导出时,需要添加POI的ooxml依赖,并强调了只引入必要的依赖以避免接口报错。内容涵盖了从controller到serviceImpl的处理流程。
摘要由CSDN通过智能技术生成

加入pom依赖

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

只留这个poi即可 否则测接口会报错

You need to add dependency of 'poi-ooxml' to your project, and version >= 4.1.2

在这里插入图片描述

controller

   //导出
    @RequestMapping("/excelW")
    public JsonResult<?> excelW(HttpServletResponse response) {
   
        return userAccountService.excelW(response);
    }
      //导入
    @RequestMapping("/excelR")
    public JsonResult<?> excelR(@RequestParam("file") MultipartFile file, HttpServletRequest request) {
   
        return userAccountService.excelR(file, request);
    }

service


    //    导出
    JsonResult<?> excelW(HttpServletResponse response);

    //    导入
    JsonResult<?>
    excelR(MultipartFile file, HttpServletRequest request);

serviceImpl


                
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值