EASY POI
1.Apache POI简介
开发中经常会设计到excel的处理,如导出Excel,导入Excel到数据库中,操作Excel等。
Apache POl简介是用Java编写的免费开源的跨平台的Java APl,Apache POl提供APl给Java程式对Microsoftoffice (Excel、WORD、PowerPoint、Visio等)格式档案读和写的功能。POl为"Poor Obfuscation lmplementation"的首字母缩写,意为“可怜的模糊实现”。
官方主页:http://poi.apache.org/index.html
API文档: http://lpoi.apache.org/apidocs/index.html
缺点:
- API文档:http:/lpoi.apache.org/apidocs/index.html
- 大数据量的读取/导成效率低下,甚至可能内存溢出
2.EasyPOI简介
为了解决上述poi的缺点,国内有很多开源项目对poi进行了封装,大大减少代码量,使其能够更简单的被我们使用并提高开发效率,例如EasyPoi,Excel4),HuTools等优秀的开源项目。我们这次以EasyPoi为例
easypoi功能如同名字easy,主打的功能就是容易,让一个没见接触过poi的人员就可以方便的写出Excel导出,Excel模板导出,Excel导入Word模板导出,通过简单的注解和模板语言(熟悉的表达式语法),完成以前复杂的写法。
官方主页: https://gitee.com/lemur/easypoi? from=gitee search
? API文档:https://opensource.afterturn.cn/doc/easypoi.html#201
? 测试项目: https://gitee.com/lemur/easypoi-test
特点:(最大的特点就是可以使用注解去定义你要导出的字段)
- 设计精巧,使用简单
- 接口丰富,扩展简单
example:
@ApiOperation(value = "导出员工数据")
@GetMapping(value = "/export",produces = "application/octet-stream")
public void exportEmployee(HttpServletResponse response){
List<Employee> list = employeeService.getEmployee(null);
ExportParams params = new ExportParams("员工表","员工表", ExcelType.HSSF);
Workbook workbook = ExcelExportUtil.exportExcel(params, Employee.class, list);
ServletOutputStream out = null;
try {
response.setHeader("content-type","application/octet-stream");
response.setHeader("content-disposition","attachment;filename="+ URLEncoder.encode("员工表.xls","UTF-8"));
out = response.getOutputStream();
workbook.write(out);
} catch (IOException e) {
e.printStackTrace();
}finally {
if(null!=out){
try {
out.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
@ApiOperation(value = "导入员工数据")
@PostMapping("/import")
public RespBean importEmployee(MultipartFile file){
ImportParams params = new ImportParams();
params.setTitleRows(1);
List<Nation> nationList = nationService.list();
List<PoliticsStatus> politicsStatusList = politicsStatusService.list();
List<Department> departmentList = departmentService.list();
List<Joblevel> joblevelList = joblevelService.list();
List<Position> positionList = positionService.list();
try {
List<Employee> list = ExcelImportUtil.importExcel(file.getInputStream(), Employee.class, params);
list.forEach(employee ->{
employee.setNationId(nationList.get(nationList.indexOf(new Nation(employee.getNation().getName()))).getId());
employee.setPoliticId(politicsStatusList.get(politicsStatusList.indexOf(new PoliticsStatus(employee.getPoliticsStatus()
.getName()))).getId());
employee.setDepartmentId(departmentList.get(departmentList.indexOf(new Department(employee.getDepartment()
.getName()))).getId());
employee.setJobLevelId(joblevelList.get(joblevelList.indexOf(new Joblevel(employee.getJoblevel().getName()))).getId());
employee.setPosId(positionList.get(positionList.indexOf(new Position(employee.getPosition().getName()))).getId());
});
if(employeeService.saveBatch(list)){
return RespBean.success("导入成功");
}
} catch (Exception e) {
e.printStackTrace();
}
return RespBean.error("导入失败");
}
Note: 在运行代码的时候我遇到了一个ERROR
'Department(java.lang.@lombok.NonNull String)' in 'com.xxxx.server.pojo.Department' cannot be applied to '()'
大致的意思就是需要在Department这个对象中增加一个参数,后面检查发现是因为我在Department这个类上面增加@RequiredArgsConstructor需要参数的注解,在加上@NoArgsConstructor无参注解以后代码成功的运行了。一般@RequiredArgsConstructor和@NoArgsConstructor都是同时出现!
|