Java中EasyPoi多sheet導(dǎo)出功能實(shí)現(xiàn)
EasyPoi 多sheet導(dǎo)出
序言:之前一直想開始寫博客,都沒有時(shí)間行動(dòng)起來,今天終于開始了我的第一篇博客…
最近接到一個(gè)導(dǎo)出excel功能的需求,該功能主要難點(diǎn)是
- 多sheet頁
- 導(dǎo)出合并單元格(跨行、跨列)
- 多表頭合并
我開始的想法是如果采用poi來實(shí)現(xiàn)這個(gè)功能,業(yè)務(wù)邏輯可能會(huì)有點(diǎn)復(fù)雜,于是我使用了easyPoi——一個(gè)so easy的工具,它的特點(diǎn)就是非常方便,用jQuery的一句來說就是:write Less,Do More。
話不多說,接下來分享一下我的代碼(我使用的是SSH框架搭建環(huán)境)
一、引入maven jar包
<dependency> <groupId>cn.afterturn</groupId> <artifactId>easypoi-base</artifactId> <version>3.2.0</version> </dependency> <dependency> <groupId>cn.afterturn</groupId> <artifactId>easypoi-web</artifactId> <version>3.2.0</version> </dependency> <dependency> <groupId>cn.afterturn</groupId> <artifactId>easypoi-annotation</artifactId> <version>3.2.0</version> </dependency>
二、編寫導(dǎo)出的實(shí)體類(使用注解形式)
1、DeptUtil 類
@ExcelTarget("deptUtil") public class DeptUtil { @Excel(name = "部門編號(hào)", width = 30 , needMerge = true) private Integer id; @Excel(name = "部門名稱", width = 30 , needMerge = true) private String deptName; @ExcelCollection(name = "員工信息") private List<EmpUtil> emps; ....省略getter、setter方法
2、EmpUtil類
@ExcelTarget("empUtil") public class EmpUtil{ @Excel(name = "序號(hào)", width = 30, isColumnHidden = true) private Integer id; @Excel(name = "員工姓名", width = 30, groupName = "基本信息") private String empName; @Excel(name = "年齡", width = 30, type = 10, groupName = "基本信息") private Integer age; @Excel(name = "入職時(shí)間", width = 30, groupName = "工作信息", format = "yyyy/MM/dd HH:mm") private Date hiredate; @Excel(name = "薪酬", width = 30, type = 10, groupName = "工作信息") private BigDecimal salary; ....省略getter、setter方法
3、核心代碼
public String export(){ Workbook workBook = null; try { List<DeptUtil> exportList = exportService.exportList(); System.err.println(JSONArray.toJSONString(exportList)); // 創(chuàng)建參數(shù)對象(用來設(shè)定excel得sheet得內(nèi)容等信息) ExportParams deptExportParams = new ExportParams(); // 設(shè)置sheet得名稱 deptExportParams.setSheetName("員工報(bào)表1"); // 創(chuàng)建sheet1使用得map Map<String, Object> deptExportMap = new HashMap<>(); // title的參數(shù)為ExportParams類型,目前僅僅在ExportParams中設(shè)置了sheetName deptExportMap.put("title", deptExportParams); // 模版導(dǎo)出對應(yīng)得實(shí)體類型 deptExportMap.put("entity", DeptUtil.class); // sheet中要填充得數(shù)據(jù) deptExportMap.put("data", exportList); ExportParams empExportParams = new ExportParams(); empExportParams.setSheetName("員工報(bào)表2"); // 創(chuàng)建sheet2使用得map Map<String, Object> empExportMap = new HashMap<>(); empExportMap.put("title", empExportParams); empExportMap.put("entity", DeptUtil.class); empExportMap.put("data", exportList); // 將sheet1、sheet2、sheet3使用得map進(jìn)行包裝 List<Map<String, Object>> sheetsList = new ArrayList<>(); sheetsList.add(deptExportMap); sheetsList.add(empExportMap); // 執(zhí)行方法 workBook = ExcelExportUtil.exportExcel(sheetsList, ExcelType.HSSF); fileName = URLEncoder.encode("員工報(bào)表導(dǎo)出", "UTF-8"); ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); workBook.write(outputStream); outputStream.flush(); byte[] byteArray = outputStream.toByteArray(); excelStream = new ByteArrayInputStream(byteArray,0,byteArray.length); outputStream.close(); }catch (Exception e){ e.printStackTrace(); }finally { if(workBook != null) { try { workBook.close(); } catch (IOException e) { e.printStackTrace(); } } } return "success"; }
三、效果展示
有一個(gè)問題就是如果sheet填充的數(shù)據(jù)源是一樣的,那么第二個(gè)sheet的內(nèi)容就會(huì)為空
不過一般上要實(shí)現(xiàn)多sheet頁展示,內(nèi)容應(yīng)該是不一樣的,這里只是作為實(shí)現(xiàn)效果展示,就采用了同一個(gè)數(shù)據(jù)獲取源。
以上就是所有內(nèi)容了,如果想要學(xué)習(xí)更多可以查閱easyPoi的api(http://easypoi.mydoc.io/)
另外附上我的項(xiàng)目源碼:https://github.com/wzqonly/easyPoi_export
到此這篇關(guān)于Java中EasyPoi多sheet導(dǎo)出功能實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)Java EasyPoi多sheet導(dǎo)出內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
java實(shí)現(xiàn)會(huì)反彈的小球示例
這篇文章主要介紹了java實(shí)現(xiàn)會(huì)反彈的小球示例,需要的朋友可以參考下2014-04-04Java事件處理機(jī)制(自定義事件)實(shí)例詳解
這篇文章主要介紹了Java事件處理機(jī)制(自定義事件)實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下2016-12-12Idea 同一窗口導(dǎo)入多個(gè)項(xiàng)目的實(shí)現(xiàn)步驟
本文主要介紹了Idea 同一窗口導(dǎo)入多個(gè)項(xiàng)目的實(shí)現(xiàn)步驟,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2023-07-07Spring事務(wù)@Transactional注解四種不生效案例場景分析
這篇文章主要為大家介紹了Spring事務(wù)@Transactional注解四種不生效的案例場景示例分析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-07-07Java中的ConcurrentLinkedQueue松散隊(duì)列解析
這篇文章主要介紹了Java中的ConcurrentLinkedQueue松散隊(duì)列解析,鏈表是松散的,鏈表節(jié)點(diǎn)并不都是有效的,允許存在無效節(jié)點(diǎn)val=null,但是只有最后一個(gè)節(jié)點(diǎn)才能next=null,需要的朋友可以參考下2023-12-12Mybatis 動(dòng)態(tài)sql if 判讀條件等于一個(gè)數(shù)字的案例
這篇文章主要介紹了Mybatis 動(dòng)態(tài)sql if 判讀條件等于一個(gè)數(shù)字的案例,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-11-11Java中的Set、List、Map的用法與區(qū)別介紹
這篇文章主要介紹了Java中的Set、List、Map的用法與區(qū)別,需要的朋友可以參考下2016-06-06Java之Springcloud Gateway內(nèi)置路由案例講解
這篇文章主要介紹了Java之Springcloud Gateway內(nèi)置路由案例講解,本篇文章通過簡要的案例,講解了該項(xiàng)技術(shù)的了解與使用,以下就是詳細(xì)內(nèi)容,需要的朋友可以參考下2021-08-08