Java 复杂excel报表导出

Wesley13
• 阅读 719

MyExcel,是一个可直接使用Html文件,或者使用内置的Freemarker、Groovy、Beetl等模板引擎Excel构建器生成的Html文件,以Html文件中的Table作为Excel模板来生成任意复杂布局的Excel的工具包,支持.xls、.xlsx格式,支持对背景色、边框、字体等进行个性化设置,支持合并单元格。

Github:https://github.com/liaochong/myexcel

详细文档:https://github.com/liaochong/myexcel/wiki

maven引用:

<dependency>
    <groupId>com.github.liaochong</groupId>
    <artifactId>myexcel</artifactId>
    <version>2.1.1</version>
</dependency>

优点:

  • 可生成任意复杂表格:本工具使用迭代单元格方式进行excel绘制,可生成任意复杂度excel,自适应宽度、高度;
  • 零学习成本:使用html作为模板,学习成本几乎为零;
  • 支持常用背景色、边框、字体等样式设置:具体参见文档-Style-support(样式支持)部分;
  • 支持.XLS、.XLSX:支持生成.xls、.xlsx后缀的excel;
  • 支持低内存SXSSF模式:支持低内存的SXSSF模式,可利用极低的内存生成.xlsx;
  • 支持生产者消费者模式导出:支持生产者消费者模式导出,配合SXSSF模式实现真正意义上海量数据导出;
  • 支持多种模板引擎:已内置Freemarker、Groovy、Beetl等常用模板引擎Excel构建器(详情参见文档Getting started),默认内置Beetl模板引擎(推荐引擎,Beetl文档);
  • 提供默认Excel构建器,直接输出简单Excel:无需编写任何html,已内置默认模板,可直接根据POJO数据列表输出;
  • 支持一次生成多sheet:以table作为sheet单元,支持一份excel文档中多sheet导出;

可选模板:

  1. 以下模板引擎除Beetl外默认均未被引入,使用者可根据自身需要选择在pom.xml中声明引入;

  2. 以下模板引擎版本为最低版本号;

    com.ibeetl beetl 2.7.23 org.freemarker freemarker 2.3.23 org.codehaus.groovy groovy-templates 2.4.13

示例:

  1. 已存在html文件,使用这种方式时,html文件不局限于放在项目的classpath下

    // get html file
    File htmlFile = new File("/Users/liaochong/Downloads/example.html");
    // read the html file and use default excel style to create excel
    Workbook workbook = HtmlToExcelFactory.readHtml(htmlFile).useDefaultStyle().build();
    // this is a example,you can write the workbook to any valid outputstream
    OutputStream writer = new FileOutputStream(new File("/Users/liaochong/Downloads/excel.xlsx"));
    workbook.write(writer);
    
  2. 默认模板引擎使用

    List<Child> dataList = new ArrayList<>();
    for (int i = 0; i < 500000; i++) {
         Child child = new Child();
         child.setName("liaochong");
         child.setAge(i);
         child.setSex(1);
         child.setIndex(i);
         dataList.add(child);
    }
    Workbook workbook = DefaultExcelBuilder.getInstance().build(dataList);
    
    @ExcelTable(workbookType = WorkbookType.SXLSX, rowAccessWindowSize = 100, sheetName = "测试")
    public static class Child extends Parent {
         @ExcelColumn(order = 3, title = "姓名")
         private String name;
    
         @ExcludeColumn
         private Integer age;
    
         public String getName() {
             return name;
         }
    
         public void setName(String name) {
             this.name = name;
         }
    
         public Integer getAge() {
             return age;
         }
    
         public void setAge(Integer age) {
             this.age = age;
         }
    }
    
    public static class Parent {
    
         @ExcelColumn(title = "性别")
         private Integer sex;
    
         @ExcelColumn(order = -1, title = "index")
         private Integer index;
    
         public Integer getSex() {
              return sex;
         }
    
         public void setSex(Integer sex) {
              this.sex = sex;
         }
    
         public Integer getIndex() {
              return index;
         }
    
         public void setIndex(Integer index) {
              this.index = index;
         }
    }
    
  3. 使用freemarker等模板引擎,具体请参照项目中的example

    /**
         * use non-default-style excel builder
         *
         * @param response response
         */
        @GetMapping("/freemarker/build")
        public void build(HttpServletResponse response) {
            ExcelBuilder excelBuilder = new FreemarkerExcelBuilder();
            Workbook workbook = excelBuilder.template("/templates/freemarker_template.ftl").build(new HashMap<>());
    
            response.setCharacterEncoding(CharEncoding.UTF_8);
            response.addHeader("Content-Disposition", "attachment;filename=" + new String("freemarker_excel.xlsx".getBytes()));
            try {
                workbook.write(response.getOutputStream());
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    
        /**
         * use default-style excel builder
         *
         * @param response response
         */
        @GetMapping("/freemarker/default_style/build")
        public void buildWithDefaultStyle(HttpServletResponse response) {
            ExcelBuilder excelBuilder = new FreemarkerExcelBuilder();
            Workbook workbook = excelBuilder.template("/templates/freemarker_template.ftl").useDefaultStyle().build(new HashMap<>());
    
            response.setCharacterEncoding(CharEncoding.UTF_8);
            response.addHeader("Content-Disposition", "attachment;filename=" + new String("freemarker_excel.xlsx".getBytes()));
            try {
                workbook.write(response.getOutputStream());
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Stella981 Stella981
3年前
KVM调整cpu和内存
一.修改kvm虚拟机的配置1、virsheditcentos7找到“memory”和“vcpu”标签,将<namecentos7</name<uuid2220a6d1a36a4fbb8523e078b3dfe795</uuid
Easter79 Easter79
3年前
Twitter的分布式自增ID算法snowflake (Java版)
概述分布式系统中,有一些需要使用全局唯一ID的场景,这种时候为了防止ID冲突可以使用36位的UUID,但是UUID有一些缺点,首先他相对比较长,另外UUID一般是无序的。有些时候我们希望能使用一种简单一些的ID,并且希望ID能够按照时间有序生成。而twitter的snowflake解决了这种需求,最初Twitter把存储系统从MySQL迁移
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这