真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯網站制作重慶分公司

如何在Java中利用EasyPoi實現一個sheet導出功能-創(chuàng)新互聯

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

成都創(chuàng)新互聯是專業(yè)的霸州網站建設公司,霸州接單;提供做網站、網站制作,網頁設計,網站設計,建網站,PHP網站建設等專業(yè)做網站服務;采用PHP框架,可快速的進行霸州網站開發(fā)網頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網站,專業(yè)的做網站團隊,希望更多企業(yè)前來合作!

一、引入maven jar包


    cn.afterturn
    easypoi-base
    3.2.0


    cn.afterturn
    easypoi-web
    3.2.0


    cn.afterturn
    easypoi-annotation
    3.2.0

二、編寫導出的實體類(使用注解形式)

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 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 exportList = exportService.exportList();
      System.err.println(JSONArray.toJSONString(exportList));

      // 創(chuàng)建參數對象(用來設定excel得sheet得內容等信息)
      ExportParams deptExportParams = new ExportParams();
      // 設置sheet得名稱
      deptExportParams.setSheetName("員工報表1");
      // 創(chuàng)建sheet1使用得map
      Map deptExportMap = new HashMap<>();
      // title的參數為ExportParams類型,目前僅僅在ExportParams中設置了sheetName
      deptExportMap.put("title", deptExportParams);
      // 模版導出對應得實體類型
      deptExportMap.put("entity", DeptUtil.class);
      // sheet中要填充得數據
      deptExportMap.put("data", exportList);

      ExportParams empExportParams = new ExportParams();
      empExportParams.setSheetName("員工報表2");
      // 創(chuàng)建sheet2使用得map
      Map empExportMap = new HashMap<>();
      empExportMap.put("title", empExportParams);
      empExportMap.put("entity", DeptUtil.class);
      empExportMap.put("data", exportList);

      // 將sheet1、sheet2、sheet3使用得map進行包裝
      List> sheetsList = new ArrayList<>();
      sheetsList.add(deptExportMap);
      sheetsList.add(empExportMap);
      // 執(zhí)行方法
      workBook = ExcelExportUtil.exportExcel(sheetsList, ExcelType.HSSF);
      fileName = URLEncoder.encode("員工報表導出", "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實現一個sheet導出功能

有一個問題就是如果sheet填充的數據源是一樣的,那么第二個sheet的內容就會為空


如何在Java中利用EasyPoi實現一個sheet導出功能

不過一般上要實現多sheet頁展示,內容應該是不一樣的,這里只是作為實現效果展示,就采用了同一個數據獲取源。

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


本文名稱:如何在Java中利用EasyPoi實現一個sheet導出功能-創(chuàng)新互聯
標題路徑:http://weahome.cn/article/dooeph.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部