溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何在Java中利用EasyPoi實現(xiàn)一個sheet導(dǎo)出功能

發(fā)布時間:2021-01-14 14:30:12 來源:億速云 閱讀:287 作者:Leah 欄目:開發(fā)技術(shù)

如何在Java中利用EasyPoi實現(xiàn)一個sheet導(dǎo)出功能?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一、引入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)出的實體類(使用注解形式)

1、DeptUtil 類

@ExcelTarget("deptUtil")
public class DeptUtil {

  @Excel(name = "部門編號", 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 = "序號", 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 = "入職時間", 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("員工報表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)得實體類型
      deptExportMap.put("entity", DeptUtil.class);
      // sheet中要填充得數(shù)據(jù)
      deptExportMap.put("data", exportList);

      ExportParams empExportParams = new ExportParams();
      empExportParams.setSheetName("員工報表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進行包裝
      List<Map<String, Object>> sheetsList = new ArrayList<>();
      sheetsList.add(deptExportMap);
      sheetsList.add(empExportMap);
      // 執(zhí)行方法
      workBook = ExcelExportUtil.exportExcel(sheetsList, ExcelType.HSSF);
      fileName = URLEncoder.encode("員工報表導(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";
  }

三、效果展示

如何在Java中利用EasyPoi實現(xiàn)一個sheet導(dǎo)出功能

有一個問題就是如果sheet填充的數(shù)據(jù)源是一樣的,那么第二個sheet的內(nèi)容就會為空

如何在Java中利用EasyPoi實現(xiàn)一個sheet導(dǎo)出功能

不過一般上要實現(xiàn)多sheet頁展示,內(nèi)容應(yīng)該是不一樣的,這里只是作為實現(xiàn)效果展示,就采用了同一個數(shù)據(jù)獲取源。

關(guān)于如何在Java中利用EasyPoi實現(xiàn)一個sheet導(dǎo)出功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI