java导入excel

该代码段展示了一个SpringMVC控制器方法,它接收上传的xls文件,使用jexcelapi库解析Excel内容,创建CommonDict对象,并根据内容调用服务层方法将数据存入数据库。如果找到匹配的父项,会设置父ID和顺序号。
摘要由CSDN通过智能技术生成

依赖

<dependency>
            <groupId>net.sourceforge.jexcelapi</groupId>
            <artifactId>jxl</artifactId>
            <version>2.6.12</version>
        </dependency>

controller

@PostMapping("/addlist")
    @ResponseBody
    public List<CommonDict> addlist( MultipartFile file) {
        try {
            Workbook workbook = Workbook.getWorkbook(file.getInputStream());
            Sheet sheet = workbook.getSheet(0);
            //List<CommonDict> list = new ArrayList<>();
            for (int i = 0; i < sheet.getRows(); i++) {
                CommonDict commonDict = new CommonDict();
                String code = sheet.getCell(0, i).getContents();
                String name = sheet.getCell(1, i).getContents();
                String sex = sheet.getCell(2, i).getContents();
                commonDict.setDictCode(code);
                commonDict.setDictName(name);
                List<CommonDict> commonDicts = commonDictService.selectCommonDictByCode(sex);
                if (commonDicts!=null&&commonDicts.size()>0){
                    if(commonDicts.get(0)!=null){
                        commonDict.setParentId( commonDicts.get(0).getId());
                        commonDict.setOrderNum(0);
                        //list.add(commonDict);
                        commonDictService.insertCommonDict(commonDict);

                    }
                }


            }
            return null;
        } catch (IOException e) {
            e.printStackTrace();
        } catch (BiffException e) {
            e.printStackTrace();
        }
        return null;
    }

excel格式必须为xls!!!!!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值