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);
就这样吧