easypoi 简单用法

1. 前言 - Powered by MinDoc1. 前言-http://doc.wupaas.com/docs/easypoi/easypoi-1c0u4mo8p4ro8

 

easypoi 算是从去年项目大佬引进开始用   适合绝大多数 数据量不高的excel导出导入场景

阿里的excel工具也有另外的大佬推荐 不过用不习惯 挺麻烦的 那个适合大数据量

当前 4.4 已支持pdf,word等功能  希望后续能专注excel 

1.maven

<properties>
   <easypoi.version>4.1.0</easypoi.version>
</properties>



<dependency>
	<groupId>cn.afterturn</groupId>
	<artifactId>easypoi-base</artifactId>
	<version>4.1.0</version>
</dependency>
<dependency>
	<groupId>cn.afterturn</groupId>
	<artifactId>easypoi-web</artifactId>
	<version>4.1.0</version>
</dependency>
<dependency>
	<groupId>cn.afterturn</groupId>
	<artifactId>easypoi-annotation</artifactId>
	<version>4.1.0</version>
</dependency>

2.实体类

正常来说导出和导入用一个实体就行  也有那种不正常的 导出导入表头不一致 需要新建导出实体包导入实体包 对应实体进行处理

对应excel表格顺序  进行编码就行

public class DemoEntity {

    @Excel(name = "设备名称", orderNum = "1")
    private String column;
}

3.serviceImpl (导入demo)

if (CollectionUtils.isEmpty(Arrays.asList(files))){
	throw new RuntimeException("导入文件不存在!");

}

//导入参数详解 在上述api链接中的2.3最下方
ImportParams params=new ImportParams();
params.setTitleRows(0);
params.setHeadRows(1);

//importFields 设置下值,就是表示表头必须至少包含的字段,如果缺一个就是不合法的excel,不导入
params.setImportFields(new String[]{"xxx"});
List<GuestVO> list= null;
try {
	list = ExcelImportUtil.importExcel(files[0].getInputStream(), Demo.class,params);
} catch (Exception e) {
	e.printStackTrace();
}

if (CollectionUtils.isEmpty(list)){
	throw new ServiceException("无可导入数据!");
}

List<Demo> saveList = new ArrayList<>();
list.forEach(e->{
    //数据处理

});

//mybatis-plus 3保存
this.saveBatch(saveList);

//各项目返回静态方法
return ResultUtil.successResult(true);

就这样吧

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值