欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java 如何快速,优雅的实现导出Excel

程序员文章站 2022-07-03 19:04:42
前言:春节假期刚刚过去,大家是不是已经开始了搬砖生活啦,嘻嘻 o(∩_∩)o ,可我还在休假中呢 !好啦,咱们言归正传,开始聊聊正文。做过后端管理系统的同学,大概率都会收到过实现 导出excel 的功...

前言:

春节假期刚刚过去,大家是不是已经开始了搬砖生活啦,嘻嘻 o(∩_∩)o ,可我还在休假中呢 !

好啦,咱们言归正传,开始聊聊正文。做过后端管理系统的同学,大概率都会收到过实现 导出excel 的功能需求,因为这个功能在后台管理系统中是个必备功能。

那大家是怎么实现这个功能的呢?

  • 使用apache提供poi组件实现;
  • 使用现成的、简便的第三方工具库(避免重复造*)

hutool 工具库中的excel工具类
easyexcel 阿里开源的基于java的简单、省内存的读写excel工具库

接下来咱们来聊聊使用 hutool、easyexcel 工具库实现导出excel。

使用第三方库实现导出excel

业界有句话:不重复造*。 使用工具类可以减少日常繁琐的编码,减少重复的编码时间,提高开发效率。 作为程序员,应该多善于利用工具减少代码冗余,美化自己的代码。

使用 hutool 工具库实现导出excel:

1、首先添加依赖
在pom.xml中添加上依赖:

<!--hutool 导出 excel 工具组件-->
<dependency>
  <groupid>cn.hutool</groupid>
  <artifactid>hutool-all</artifactid>
  <version>5.1.0</version>
</dependency>

<!--poi组件-->
<dependency>
  <groupid>org.apache.poi</groupid>
  <artifactid>poi-ooxml</artifactid>
  <version>4.1.0</version>
</dependency>

上面除了引入了 hutool 依赖之外,还引入了 poi-ooxml 依赖,这个包会自动关联引入poi包,且可以很好的支持office2007+的文档格式 。

2、然后使用工具类实现导出excel

import cn.hutool.core.collection.collutil;
import cn.hutool.poi.excel.excelutil;
import cn.hutool.poi.excel.excelwriter;
import cn.hutool.poi.excel.styleset;
import org.apache.poi.ss.usermodel.cellstyle;
import org.apache.poi.ss.usermodel.font;

import java.util.arraylist;
import java.util.date;
import java.util.linkedhashmap;
import java.util.list;
import java.util.map;

/**
 * @package_name: com.lyl.excel
 * @classname: hutoolexcelutils
 * @description: 使用 hutool 中的工具类实现 excel的导出
 * @date: 2021-02-18 16:24
 * @author: [木子雷] 公众号
 **/
public class hutoolexcelutils {


    /**
     * 导出excel
     *
     * @param args
     */
    public static void main(string[] args) {

        arraylist<map<string, object>> rows = collutil.newarraylist(data());
        excelwriter writer = null;

        try {
            string path = "e:/qqpcmgr/desktop/";

            string excelname = "hutool" + system.currenttimemillis() + ".xlsx";
            // 通过工具类创建writer,固定的文件输出路径
            writer = excelutil.getwriter(path + excelname);

            // 定义第一行合并单元格样式
            cellstyle headcellstyle = writer.getheadcellstyle();
            // 设置内容字体
            font font = writer.createfont();
            // 字体加粗
            font.setbold(true);
            // 字体颜色
            font.setcolor(font.color_red);
            headcellstyle.setfont(font);

            // 设置第 0 列的单元格的宽度,列数从零开始计算
            writer.setcolumnwidth(0, 20);
            writer.setcolumnwidth(1, 20);
            writer.setcolumnwidth(2, 20);

            // 定义数据行的样式
            styleset style = writer.getstyleset();
            // 设置单元格文本内容自动换行
            style.setwraptext();

            // 合并单元格后的标题行(第一行),使用默认标题样式
            writer.merge(rows.get(0).size() - 1, "导出测试:test");
            // 一次性写出内容,使用默认样式,强制输出标题
            writer.write(rows, true);

        } catch (exception e) {
            e.printstacktrace();
        } finally {
            if (writer != null) {
                // 记住关闭 writer,释放内存
                writer.close();
            }
        }
    }


    /**
     * 构造 导出的数据
     *
     * @return
     */
    public static list<map<string, object>> data() {
        // 导出的数据
        arraylist<map<string, object>> rows = new arraylist<>();

        for (int i = 0; i < 10; i++) {
            map<string, object> row = new linkedhashmap<>();

            row.put("字符串标题", "字符串" + i);
            row.put("日期标题", new date());
            row.put("数字标题", 0.56);
            rows.add(row);
        }
        return rows;
    }

}

注意:

  • 记得修改代码中导出excel的路径 path
  • 导出excel的样式是可以灵活变化的,可以自行进行设置

3、导出excel的样式如下

Java 如何快速,优雅的实现导出Excel

4、注意事项

  • 在导出大数据量时,可能会出现内存溢出的问题,不要担心,hutool也为我们提供了 bigexcelwriter 来避免大数据量输出时可能会出现的内存溢出问题。
  • 上面的例子中,只实现了部分的样式设置,hutool还提供了许多其它的样式,大家可以自行去尝试;并且 hutool 也支持写出到 web客户端下载 。

官方文档地址: hutool 操作 excel

使用 easyexcel 工具库实现导出excel:

easyexcel是一个基于java的简单、省内存的读写excel的 阿里开源 项目;正如它在github中项目代码介绍的那样:一个快速、简单避免oom的java处理excel工具。

测试得知 64m内存1分钟内读取75m(46w行25列)的excel ;除此之外还有 急速模式 能更快,但是内存占用会在100m多一点 。

1、首先添加依赖

<!--  阿里开源的 excel 工具类库 -->
<dependency>
  <groupid>com.alibaba</groupid>
  <artifactid>easyexcel</artifactid>
  <version>2.2.6</version>
</dependency>

注意: 此依赖不能和 poi-ooxml 依赖在一起用,否则运行时会报 类找不到 的异常。

2、然后使用工具类实现导出excel
①、导出的数据模版类:

import com.alibaba.excel.annotation.excelignore;
import com.alibaba.excel.annotation.excelproperty;
import com.alibaba.excel.annotation.write.style.columnwidth;
import com.alibaba.excel.annotation.write.style.contentfontstyle;
import com.alibaba.excel.annotation.write.style.contentrowheight;
import com.alibaba.excel.annotation.write.style.contentstyle;
import com.alibaba.excel.annotation.write.style.headfontstyle;
import com.alibaba.excel.annotation.write.style.headrowheight;
import com.alibaba.excel.annotation.write.style.headstyle;
import org.apache.poi.ss.usermodel.fillpatterntype;

import java.util.date;

/**
 * @package_name: com.lyl.excel
 * @classname: demodata
 * @description:  使用 easyexcel 导出数据时的数据模版
 * @date: 2021-01-27 17:46
 * @author: [木子雷] 公众号
 **/

// 标题行 背景设置成红色 indexedcolors.red.getindex()
@headstyle(fillpatterntype = fillpatterntype.solid_foreground, fillforegroundcolor = 10)
// 标题行 字体设置成20
@headfontstyle(fontheightinpoints = 20)
@contentrowheight(25)// 文本内容行的高度
@headrowheight(30)// 标题行的高度
@columnwidth(20)// 全局的列宽
public class demodata {

    // 字符串的列内容 背景设置成天蓝 indexedcolors.sky_blue.getindex()
    @contentstyle(fillpatterntype = fillpatterntype.solid_foreground, fillforegroundcolor = 40)
    // 字符串的列内容 字体设置成20
    @contentfontstyle(fontheightinpoints = 20)
    @excelproperty({"导出测试:test", "字符串标题"})
    private string string;

    @columnwidth(30)
    @excelproperty({"导出测试:test", "日期标题"})
    private date date;

    @excelproperty({"导出测试:test", "数字标题"})
    private double doubledata;

    /**
     * 忽略这个字段
     */
    @excelignore
    private string ignore;

    public string getstring() {
        return string;
    }

    public void setstring(string string) {
        this.string = string;
    }

    public date getdate() {
        return date;
    }

    public void setdate(date date) {
        this.date = date;
    }

    public double getdoubledata() {
        return doubledata;
    }

    public void setdoubledata(double doubledata) {
        this.doubledata = doubledata;
    }

    public string getignore() {
        return ignore;
    }

    public void setignore(string ignore) {
        this.ignore = ignore;
    }
}

注意: 这个数据模版类中使用了大量的 自定义注解 ,通过使用注解可以使代码变得更加的优雅、简洁 。

关于项目中自定义注解的实际使用可以参考:自定义注解的魅力你到底懂不懂

②、实现数据导出到excel:

import com.alibaba.excel.easyexcel;

import java.util.arraylist;
import java.util.date;
import java.util.list;

/**
 * @package_name: com.lyl.excel
 * @classname: easyexcelutils
 * @description: 阿里巴巴 开源的  easyexcel 工具
 * @date: 2021-01-20 16:58
 * @author: [木子雷] 公众号
 **/
public class easyexcelutils {


    public static void main(string[] args) {
        // 导出excel的路径
        string path = "e:/qqpcmgr/desktop/";

        // 导出excel路径 + 文件名称
        string filename = path + "easyexcel" + system.currenttimemillis() + ".xlsx";

        /**
         * 导出excel
         * filename:导出excel全路径
         * demodata.class:导出excel时的 数据模版
         * 模板:指的是导出excel的sheet页
         * data():构造的demodata.class数据模版的数据集合 
         */
        easyexcel.write(filename, demodata.class).sheet("模板").dowrite(data());
    }


    /**
     * 构造 导出的数据
     *
     * @return
     */
    private static list<demodata> data() {
        list<demodata> list = new arraylist<demodata>();
        for (int i = 0; i < 10; i++) {
            demodata data = new demodata();
            data.setstring("字符串" + i);
            data.setdate(new date());
            data.setdoubledata(0.56);
            list.add(data);
        }
        return list;
    }
}

注意:

记得修改代码中导出excel的路径 path

  • 导出excel的样式是可以灵活变化的,可以自行进行设置

3、导出excel的样式如下

Java 如何快速,优雅的实现导出Excel

4、easyexcel 导出excel扩展:

上面导出excel的例子中,只实现了其中一部分功能,还有很多功能由于篇幅原因没法一一展示出来,在这就简单说下支持的其它功能:

  • 通过设置 只导出模版数据中的指定列数据
  • 通过设置 将模版数据中的列数据导出到excel中指定的列上
  • 可以将导出的数据分多个批次导入到同一个excel中,避免大数据量时的内存溢出问题
  • 导出数据的自定义格式转换,例如:日志、数字的格式转换等
  • 支持将图片导出到excel中
  • 支持根据已有的excel模版样式 将数据导出excel
  • 支持单元格合并、表格方式导出、自动列宽、设置单元格下拉、超链接等、以及插入批注
  • 除了上面的导出excel功能之外,easyexcel还支持 读取excel数据、web客户端的上传、下载等 ;

官方文档地址: 阿里开源 easyexcel

项目代码地址:

easyexcel项目代码拉取下来后,可以直接去单元测试包下,查看已提供的功能测试使用方法:

Java 如何快速,优雅的实现导出Excel

以上就是java 如何快速,优雅的实现导出excel的详细内容,更多关于java 实现导出excel的资料请关注其它相关文章!

相关标签: Java excel