当前位置:   article > 正文

EasyExcel ----- 实现数据库数据 导出为Excel表和Excel表导入数据功能

EasyExcel ----- 实现数据库数据 导出为Excel表和Excel表导入数据功能

一、EasyExcel简介

        Java解析、生成Excel比较有名的框架有Apache poi、jxl。但他们都存在一个严重的问题就是非常的耗内存,poi有一套SAX模式的API可以一定程度的解决一些内存溢出的问题,但POI还是有一些缺陷,比如07版Excel解压缩以及解压后存储都是在内存中完成的,内存消耗依然很大。easyexcel重写了poi对07版Excel的解析,能够原本一个3M的excel用POI sax依然需要100M左右内存降低到KB级别,并且再大的excel不会出现内存溢出,03版依赖POI的sax模式。在上层做了模型转换的封装,让使用者更加简单方便。

       EasyExcel阿里官方文档:https://github.com/alibaba/easyexcel

二、EasyExcel的简单使用

1、搭建EasyExcel项目环境

1.1、添加EasyExcel所需依赖

  1. <properties>
  2. <poi.version>3.17</poi.version>
  3. <spring.version>5.1.5.RELEASE</spring.version>
  4. </properties>
  5. <dependencies>
  6. <!-- ******************** EasyExcel依赖包 开始 ******************** -->
  7. <!-- xls格式 excel依赖包 -->
  8. <dependency>
  9. <groupId>org.apache.poi</groupId>
  10. <artifactId>poi</artifactId>
  11. <version>${poi.version}</version>
  12. </dependency>
  13. <!--xlsx格式 excel依赖包-->
  14. <dependency>
  15. <groupId>org.apache.poi</groupId>
  16. <artifactId>poi-ooxml</artifactId>
  17. <version>${poi.version}</version>
  18. </dependency>
  19. <!-- EasyExcel依赖包 -->
  20. <dependency>
  21. <groupId>com.alibaba</groupId>
  22. <artifactId>easyexcel</artifactId>
  23. <version>1.1.2-beta5</version>
  24. </dependency>
  25. <!-- ******************** EasyExcel依赖包 结束 ******************** -->
  26. <!-- MySql驱动 -->
  27. <dependency>
  28. <groupId>mysql</groupId>
  29. <artifactId>mysql-connector-java</artifactId>
  30. <version>5.1.47</version>
  31. </dependency>
  32. <!-- Druid连接池 -->
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>druid</artifactId>
  36. <version>1.1.10</version>
  37. </dependency>
  38. <!-- Mybatis -->
  39. <dependency>
  40. <groupId>org.mybatis</groupId>
  41. <artifactId>mybatis</artifactId>
  42. <version>3.4.6</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mybatis</groupId>
  46. <artifactId>mybatis-spring</artifactId>
  47. <version>1.3.2</version>
  48. </dependency>
  49. <!-- Lombok -->
  50. <dependency>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. <version>1.16.20</version>
  54. <scope>provided</scope>
  55. </dependency>
  56. <!-- javax.servlet-api -->
  57. <dependency>
  58. <groupId>javax.servlet</groupId>
  59. <artifactId>javax.servlet-api</artifactId>
  60. <version>3.1.0</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. <!-- Spring -->
  64. <dependency>
  65. <groupId>org.springframework</groupId>
  66. <artifactId>spring-context</artifactId>
  67. <version>${spring.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework</groupId>
  71. <artifactId>spring-beans</artifactId>
  72. <version>${spring.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>spring-webmvc</artifactId>
  77. <version>${spring.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework</groupId>
  81. <artifactId>spring-jdbc</artifactId>
  82. <version>${spring.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>spring-aspects</artifactId>
  87. <version>${spring.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework</groupId>
  91. <artifactId>spring-jms</artifactId>
  92. <version>${spring.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-context-support</artifactId>
  97. <version>${spring.version}</version>
  98. </dependency>
  99. <!-- junit单元测试 -->
  100. <dependency>
  101. <groupId>junit</groupId>
  102. <artifactId>junit</artifactId>
  103. <version>4.11</version>
  104. <scope>test</scope>
  105. </dependency>
  106. </dependencies>
  107. <!-- 打包资源文件 -->
  108. <build>
  109. <resources>
  110. <resource>
  111. <directory>src/main/java</directory>
  112. <includes>
  113. <include>**/*.properties</include>
  114. <include>**/*.xml</include>
  115. </includes>
  116. </resource>
  117. </resources>
  118. </build>

1.2、设计并创建对应的user数据库表

  1. CREATE TABLE `user` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `name` varchar(11) DEFAULT NULL,
  4. `sex` varchar(3) DEFAULT NULL,
  5. `age` int(4) DEFAULT NULL,
  6. `birthday` date DEFAULT NULL,
  7. PRIMARY KEY (`id`)
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

1.3、在resources资源目录下,创建一个properties目录,并创建和编写jdbc.properties配置文件,设置jdbc连接数据库的四个参数

  1. jdbc.driver=com.mysql.jdbc.Driver
  2. jdbc.url=jdbc:mysql://localhost:3306/easy_excel?rewriteBatchedStatements=true&allowMultiQueries=true&useUnicode=true&characterEncoding=utf-8&autoReconnect=true&failOverReadOnly=false&useSSL=false
  3. jdbc.username=root
  4. jdbc.password=123456
  5. ---------------------------mysql 连接数据库参数设置介绍
  6. //设置JDBC驱动批量执行SQL
  7. rewriteBatchedStatements=true
  8. //设置允许JDBC连接能够一次执行多条增删改查操作,假如没配这个参数的话,所有批量操作都会报错。
  9. allowMultiQueries=true
  10. //指定字符的编码、解码格式
  11. useUnicode=true&characterEncoding=utf-8
  12. //在使用数据库连接池的情况下,最好设置如下两个参数
  13. autoReconnect=true //当数据库连接异常中断时,自动重新连接
  14. failOverReadOnly=false //自动重连成功后,连接是否设置为只读
  15. //设置关闭SSL连接
  16. useSSL=false

1.4、在resources资源目录下,创建一个spring目录,并创建和编写applicationContext-spring.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xmlns:tx="http://www.springframework.org/schema/tx"
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans
  8. http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
  9. http://www.springframework.org/schema/context
  10. http://www.springframework.org/schema/context/spring-context-4.2.xsd
  11. http://www.springframework.org/schema/tx
  12. http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
  13. http://www.springframework.org/schema/aop
  14. http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">
  15. <!-- 配置包扫描器,扫描注解的类 -->
  16. <context:component-scan base-package="com.easyexcel.service"/>
  17. <!-- 加载配置文件 -->
  18. <context:property-placeholder location="classpath:properties/jdbc.properties" />
  19. <!-- 数据库连接池 -->
  20. <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" destroy-method="close">
  21. <property name="url" value="${jdbc.url}" />
  22. <property name="username" value="${jdbc.username}" />
  23. <property name="password" value="${jdbc.password}" />
  24. <property name="driverClassName" value="${jdbc.driver}" />
  25. <property name="maxActive" value="10" />
  26. <property name="minIdle" value="5" />
  27. </bean>
  28. <!-- 让spring管理sqlsessionfactory 使用mybatis和spring整合包中的 -->
  29. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
  30. <!-- 数据库连接池 -->
  31. <property name="dataSource" ref="dataSource" />
  32. </bean>
  33. <!-- MapperScannerConfigurer 自动扫描将Mapper接口生成代理注入到spring -->
  34. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  35. <!--basePackage指定要扫描的包,在此包之下的映射器都会被搜索到。可指定多个包,包与包之间用逗号或分号分隔-->
  36. <property name="basePackage" value="com.easyexcel.mapper" />
  37. </bean>
  38. <!-- 事务管理器 -->
  39. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  40. <!-- 数据源 -->
  41. <property name="dataSource" ref="dataSource" />
  42. </bean>
  43. <!-- 通知 -->
  44. <tx:advice id="txAdvice" transaction-manager="transactionManager">
  45. <tx:attributes>
  46. <!-- 传播行为 -->
  47. <tx:method name="save*" propagation="REQUIRED" />
  48. <tx:method name="insert*" propagation="REQUIRED" />
  49. <tx:method name="add*" propagation="REQUIRED" />
  50. <tx:method name="create*" propagation="REQUIRED" />
  51. <tx:method name="delete*" propagation="REQUIRED" />
  52. <tx:method name="update*" propagation="REQUIRED" />
  53. <tx:method name="find*" propagation="SUPPORTS" read-only="true" />
  54. <tx:method name="select*" propagation="SUPPORTS" read-only="true" />
  55. <tx:method name="get*" propagation="SUPPORTS" read-only="true" />
  56. </tx:attributes>
  57. </tx:advice>
  58. <!-- 切面 -->
  59. <aop:config>
  60. <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.easyexcel.service.*.*(..))" />
  61. </aop:config>
  62. </beans>

2、使用EasyExcel导入、导出带有表头注解的Java实体类模型的Excel

2.1、编写与数据库表对应的带有表头注解的实体类模型 (需要继承BaseRowModel类)

  1. package com.easyexcel.pojo;
  2. import com.alibaba.excel.annotation.ExcelProperty;
  3. import com.alibaba.excel.metadata.BaseRowModel;
  4. import lombok.Getter;
  5. import lombok.NoArgsConstructor;
  6. import lombok.Setter;
  7. import lombok.ToString;
  8. import java.io.Serializable;
  9. import java.util.Date;
  10. @Getter
  11. @Setter
  12. @ToString
  13. @NoArgsConstructor
  14. public class User extends BaseRowModel implements Serializable {
  15. /**
  16. * @ExcelProperty(value = "表头名称",index = 0,format = "yyyy-MM-dd")
  17. * value是表头数据,默认会写在excel的表头位置
  18. * index代表第几列,从0开始
  19. * format表示时间日期输出到Excel表中的格式
  20. */
  21. @ExcelProperty(value="主键id",index=0)
  22. private Integer id;
  23. @ExcelProperty(value="姓名",index=1)
  24. private String name;
  25. @ExcelProperty(value="性别",index=2)
  26. private String sex;
  27. @ExcelProperty(value="年龄",index=3)
  28. private Integer age;
  29. @ExcelProperty(value="生日",index=4,format="yyyy-MM-dd")
  30. private Date birthday;
  31. private static final long serialVersionUID = 1L;
  32. }

2.2、编写与数据库交互的UserMapper接口

  1. package com.easyexcel.mapper;
  2. import com.easyexcel.pojo.User;
  3. import org.apache.ibatis.annotations.Param;
  4. import java.util.List;
  5. public interface UserMapper {
  6. /**
  7. * 查询所有用户信息
  8. * @return List<User>
  9. */
  10. List<User> selectAllOfUser();
  11. /**
  12. * 批量插入所有用户信息
  13. * @param users 用户信息集合
  14. * @return int
  15. */
  16. int insertAllOfUser(@Param("users") List<User> users);
  17. }

2.3、编写与UserMapper接口对应的UserMapper.xml

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
  3. <mapper namespace="com.easyexcel.mapper.UserMapper" >
  4. <resultMap id="BaseResultMap" type="com.easyexcel.pojo.User" >
  5. <id column="id" property="id" jdbcType="INTEGER" />
  6. <result column="name" property="name" jdbcType="VARCHAR" />
  7. <result column="sex" property="sex" jdbcType="VARCHAR" />
  8. <result column="age" property="age" jdbcType="INTEGER" />
  9. <result column="birthday" property="birthday" jdbcType="DATE" />
  10. </resultMap>
  11. <sql id="Base_Column_List" >
  12. id, name, sex, age, birthday
  13. </sql>
  14. <select id="selectAllOfUser" resultMap="BaseResultMap">
  15. select
  16. <include refid="Base_Column_List" />
  17. from user
  18. </select>
  19. <insert id="insertAllOfUser" parameterType="com.easyexcel.pojo.User" >
  20. insert into user
  21. (<include refid="Base_Column_List" />)
  22. values
  23. <foreach collection="users" item="user" separator=",">
  24. (#{user.id},#{user.name},#{user.sex},#{user.age},#{user.birthday})
  25. </foreach>
  26. </insert>
  27. </mapper>

2.4、编写UserService接口

  1. package com.easyexcel.service;
  2. import com.easyexcel.pojo.User;
  3. import java.util.List;
  4. public interface UserService {
  5. /**
  6. * 查询所有用户信息
  7. *
  8. * @return List<User> User实体类对象集合
  9. */
  10. List<User> selectAllOfUser();
  11. /**
  12. * 批量插入所有用户信息
  13. *
  14. * @param users 用户信息集合
  15. * @return int 影响行数
  16. */
  17. int insertAllOfUser(List<User> users);
  18. }

2.5、编写UserService接口的实现类UserServiceImpl

  1. package com.easyexcel.service.impl;
  2. import com.easyexcel.mapper.UserMapper;
  3. import com.easyexcel.pojo.User;
  4. import com.easyexcel.service.UserService;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. import java.util.List;
  8. @Service
  9. public class UserServiceImpl implements UserService {
  10. @Autowired
  11. private UserMapper userMapper;
  12. @Override
  13. public List<User> selectAllOfUser() {
  14. return userMapper.selectAllOfUser();
  15. }
  16. @Override
  17. public int insertAllOfUser(List<User> users) {
  18. return userMapper.insertAllOfUser(users);
  19. }
  20. }

2.6、编写ExcelException异常处理器

  1. package com.easyexcel.exception;
  2. public class ExcelException extends RuntimeException{
  3. public ExcelException(String message){
  4. super(message);
  5. }
  6. }

2.7、编写ExcelListener监听类

  1. package com.easyexcel.listener;
  2. import com.alibaba.excel.context.AnalysisContext;
  3. import com.alibaba.excel.event.AnalysisEventListener;
  4. import java.util.ArrayList;
  5. import java.util.List;
  6. public class ExcelListener extends AnalysisEventListener{
  7. /**
  8. * 自定义用于暂时存储data。
  9. * 可以通过实例获取该值
  10. */
  11. private List<Object> datas = new ArrayList<Object>();
  12. @Override
  13. public void invoke(Object object, AnalysisContext analysisContext) {
  14. System.out.println("当前行:"+ analysisContext.getCurrentRowNum());
  15. System.out.println(object);
  16. //数据存储到list,供批量处理,或后续自己业务逻辑处理。
  17. datas.add(object);
  18. //根据自己业务做处理
  19. doSomething(object);
  20. }
  21. @Override
  22. public void doAfterAllAnalysed(AnalysisContext analysisContext) {
  23. //解析结束销毁不用的资源
  24. // datas.clear();
  25. }
  26. public List<Object> getDatas() {
  27. return datas;
  28. }
  29. public void setDatas(List<Object> datas) {
  30. this.datas = datas;
  31. }
  32. private void doSomething(Object object){
  33. //入库调用接口
  34. }
  35. }

2.8、编写ExcelUtils工具类,可以直接调用该工具类的方法完成 Excel 的导入或者导出

  1. package com.easyexcel.utils;
  2. import com.alibaba.excel.EasyExcelFactory;
  3. import com.alibaba.excel.ExcelReader;
  4. import com.alibaba.excel.ExcelWriter;
  5. import com.alibaba.excel.metadata.BaseRowModel;
  6. import com.alibaba.excel.metadata.Sheet;
  7. import com.easyexcel.exception.ExcelException;
  8. import com.easyexcel.listener.ExcelListener;
  9. import org.springframework.web.multipart.MultipartFile;
  10. import javax.servlet.http.HttpServletResponse;
  11. import java.io.*;
  12. import java.text.SimpleDateFormat;
  13. import java.util.Date;
  14. import java.util.List;
  15. public class ExcelUtils {
  16. //--------------------------------------------导入Excel--------------------------------------------
  17. /**
  18. * 读取带有表头注解的Java实体类模型
  19. * 读取多个sheet 的Excel
  20. *
  21. * @param inputStream 字节输入流
  22. * @param clazz 类的字节码文件对象
  23. * @return List<?> 实体对象集合
  24. */
  25. public static List<?> readExcel(InputStream inputStream, Class clazz){
  26. BufferedInputStream bufferedInputStream = null;
  27. ExcelListener excelListener = null;
  28. try {
  29. //包装成缓冲字节输入流
  30. bufferedInputStream = new BufferedInputStream(inputStream);
  31. //解析Excel表格的每行数据
  32. excelListener = new ExcelListener();
  33. //读取Excel表格数据
  34. ExcelReader excelReader = EasyExcelFactory.getReader(bufferedInputStream,excelListener);
  35. //循环读取多个Sheet
  36. for(Sheet sheet : excelReader.getSheets()){
  37. sheet.setClazz(clazz);
  38. excelReader.read(sheet);
  39. }
  40. } catch (Exception e) {
  41. e.printStackTrace();
  42. } finally {
  43. //关闭缓冲字节输入流,释放资源
  44. if(bufferedInputStream != null){
  45. try {
  46. bufferedInputStream.close();
  47. } catch (IOException e) {
  48. e.printStackTrace();
  49. }
  50. }
  51. }
  52. return excelListener.getDatas();
  53. }
  54. /**
  55. * 读取带有表头注解的Java实体类模型
  56. * 读取单个指定sheet 的Excel
  57. *
  58. * @param inputStream 字节输入流
  59. * @param clazz 类的字节码文件对象
  60. * @param sheetNo sheet的序号 默认从1开始
  61. * @return List<?> 实体对象集合
  62. */
  63. public static List<?> readExcel(InputStream inputStream, Class clazz, int sheetNo){
  64. return readExcel(inputStream,clazz,sheetNo,1);
  65. }
  66. /**
  67. * 读取带有表头注解的Java实体类模型
  68. * 读取单个指定sheet和headLineNum 的Excel
  69. *
  70. * @param inputStream 字节输入流
  71. * @param clazz 类的字节码文件对象
  72. * @param sheetNo sheet的序号 默认从1开始
  73. * @param headLineNum 实体对象集合 默认从1开始
  74. * @return List<?> 实体对象集合
  75. */
  76. public static List<?> readExcel(InputStream inputStream, Class clazz, int sheetNo, int headLineNum){
  77. BufferedInputStream bufferedInputStream = null;
  78. ExcelListener excelListener = null;
  79. try {
  80. //包装成缓冲字节输入流
  81. bufferedInputStream = new BufferedInputStream(inputStream);
  82. //解析Excel表格的每行数据
  83. excelListener = new ExcelListener();
  84. //读取Excel表格数据
  85. ExcelReader excelReader = EasyExcelFactory.getReader(bufferedInputStream,excelListener);
  86. excelReader.read(new Sheet(sheetNo,headLineNum,clazz));
  87. } catch (Exception e) {
  88. e.printStackTrace();
  89. } finally {
  90. //关闭缓冲字节输入流,释放资源
  91. if(bufferedInputStream != null){
  92. try {
  93. bufferedInputStream.close();
  94. } catch (IOException e) {
  95. e.printStackTrace();
  96. }
  97. }
  98. }
  99. return excelListener.getDatas();
  100. }
  101. //--------------------------------------------导出Excel--------------------------------------------
  102. /**
  103. * 判断上传的Excel文件是否符合格式要求
  104. *
  105. * @param excel 上传的Excel文件
  106. * @return boolean true表示符合文件格式要求,false表示不符合文件格式要求
  107. */
  108. public static boolean determineExcelIsFormatted(MultipartFile excel){
  109. //获取文件名
  110. String fileName = excel.getOriginalFilename();
  111. //判断文件名是否符合文件格式
  112. boolean flag = (fileName == null || (!fileName.toLowerCase().endsWith(".xls") && !fileName.toLowerCase().endsWith(".xlsx")));
  113. if(flag){
  114. return false;
  115. }
  116. return true;
  117. }
  118. /**
  119. * 设置文件响应信息,并返回字节输出流
  120. *
  121. * @param fileName 文件名
  122. * @param response HttpServletResponse响应
  123. * @return OutputStream 字节输出流
  124. */
  125. public static OutputStream setResponse(String fileName, HttpServletResponse response){
  126. try {
  127. //设置文件名
  128. fileName = new String((fileName +" "+ new SimpleDateFormat("yyyy-MM-dd").format(new Date()))
  129. .getBytes(),"UTF-8");
  130. //设置文件ContentType类型
  131. response.setContentType("multipart/form-data");
  132. //设置服务器响应数据的编码
  133. response.setCharacterEncoding("utf-8");
  134. //设置文件头
  135. response.setHeader("Content-disposition", "attachment;filename="+fileName+".xlsx");
  136. return response.getOutputStream();
  137. } catch (IOException e) {
  138. throw new ExcelException("创建文件失败!");
  139. }
  140. }
  141. /**
  142. * 导出带有表头注解的Java实体类模型
  143. * 导出单个sheet 的Excel,带表头
  144. *
  145. * @param outputStream 字节输出流
  146. * @param clazz 类的字节码文件对象
  147. * @param data 实体对象集合
  148. */
  149. public static void writeExcel(OutputStream outputStream, Class clazz, List<? extends BaseRowModel> data){
  150. writeExcel(outputStream,clazz,"User表格",data);
  151. }
  152. /**
  153. * 导出带有表头注解的Java实体类模型
  154. * 导出单个sheet 的Excel,带表头,可自定义sheet表格名称
  155. *
  156. * @param outputStream 字节输出流
  157. * @param clazz 类的字节码文件对象
  158. * @param sheetName sheet表格名称
  159. * @param data 实体对象集合
  160. */
  161. public static void writeExcel(OutputStream outputStream, Class clazz, String sheetName, List<? extends BaseRowModel> data){
  162. BufferedOutputStream bufferedOutputStream = null;
  163. try {
  164. //包装成缓冲字节输入流
  165. bufferedOutputStream = new BufferedOutputStream(outputStream);
  166. //包装成缓冲字节输入流
  167. ExcelWriter writer = EasyExcelFactory.getWriter(outputStream);
  168. //创建sheet表格,并设置表格名称
  169. Sheet sheet = new Sheet(1, 0, clazz);
  170. sheet.setSheetName(sheetName);
  171. //设置自适应宽度
  172. sheet.setAutoWidth(Boolean.TRUE);
  173. //把数据写入表格
  174. writer.write(data,sheet);
  175. writer.finish();
  176. } catch (Exception e) {
  177. e.printStackTrace();
  178. } finally {
  179. //关闭缓冲字节输出流,释放资源
  180. if(bufferedOutputStream != null){
  181. try {
  182. bufferedOutputStream.close();
  183. } catch (IOException e) {
  184. e.printStackTrace();
  185. }
  186. }
  187. }
  188. }
  189. }

2.9、准备Excel表格数据 (因为数据库表字段id,我设置为 int自增类型,所以主键id这一列我们不设置值)

主键id姓名性别年龄生日
曾华421977-09-01
匡明441975-10-02
王丽431976-01-23
李军431976-02-20
王芳441975-02-10
陆君451974-06-03
李诚611958-12-02
张旭501969-03-12
王萍471972-05-05
刘冰421977-08-14

2.10、编写带有表头注解的Java实体类模型的测试用例

  1. package com.easyexcel.test;
  2. import com.easyexcel.pojo.User;
  3. import com.easyexcel.service.UserService;
  4. import com.easyexcel.utils.ExcelUtils;
  5. import org.junit.Before;
  6. import org.junit.Test;
  7. import org.springframework.context.support.ClassPathXmlApplicationContext;
  8. import java.io.*;
  9. import java.util.List;
  10. public class EasyExcelTest {
  11. private UserService userService;
  12. @Before
  13. public void init() {
  14. //读取applicationContext-spring.xml配置文件
  15. ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring/applicationContext-spring.xml");
  16. //获取Spring容器中已初始化的UserServiceImpl实例对象
  17. userService = (UserService) context.getBean("userServiceImpl");
  18. }
  19. /**
  20. * 读取带有表头注解的Java实体类模型
  21. * 读取单个指定sheet 的Excel,并导入到数据库中
  22. */
  23. @Test
  24. public void readExcel() {
  25. InputStream fileInputStream = null;
  26. try {
  27. //读取user.xlsx表格,获得文件输入流
  28. fileInputStream = new FileInputStream("G:/user.xlsx");
  29. //获得User实体类对象集合
  30. List<User> users = (List<User>) ExcelUtils.readExcel(fileInputStream, User.class, 1);
  31. //批量插入到数据库user表中
  32. userService.insertAllOfUser(users);
  33. } catch (FileNotFoundException e) {
  34. e.printStackTrace();
  35. } finally {
  36. //关闭文件输入流,释放资源
  37. if (fileInputStream != null) {
  38. try {
  39. fileInputStream.close();
  40. } catch (IOException e) {
  41. e.printStackTrace();
  42. }
  43. }
  44. }
  45. }
  46. /**
  47. * 导出带有表头注解的Java实体类模型
  48. * 导出单个sheet 的Excel,带表头
  49. */
  50. @Test
  51. public void writeExcel() {
  52. FileOutputStream fileOutputStream = null;
  53. try {
  54. //获取文件输出流
  55. fileOutputStream = new FileOutputStream("G:/create_user.xlsx");
  56. //获得User实体类对象集合
  57. List<User> users = userService.selectAllOfUser();
  58. //把数据写入到指定的Excel表格中
  59. ExcelUtils.writeExcel(fileOutputStream, User.class, users);
  60. } catch (FileNotFoundException e) {
  61. e.printStackTrace();
  62. } finally {
  63. if (fileOutputStream != null) {
  64. try {
  65. fileOutputStream.close();
  66. } catch (IOException e) {
  67. e.printStackTrace();
  68. }
  69. }
  70. }
  71. }
  72. }

2.11、测试结果如下图所示

导入结果图:

导出结果图:

2.12、如果想通过Java实体类模型生成如下多层级表头

Java实体类模型写法如下:

  1. public class MultiLineHeadExcelModel extends BaseRowModel {
  2. @ExcelProperty(value = {"表头1","表头1","表头31"},index = 0)
  3. private String p1;
  4. @ExcelProperty(value = {"表头1","表头1","表头32"},index = 1)
  5. private String p2;
  6. @ExcelProperty(value = {"表头3","表头3","表头3"},index = 2)
  7. private int p3;
  8. @ExcelProperty(value = {"表头4","表头4","表头4"},index = 3)
  9. private long p4;
  10. @ExcelProperty(value = {"表头5","表头51","表头52"},index = 4)
  11. private String p5;
  12. @ExcelProperty(value = {"表头6","表头61","表头611"},index = 5)
  13. private String p6;
  14. @ExcelProperty(value = {"表头6","表头61","表头612"},index = 6)
  15. private String p7;
  16. @ExcelProperty(value = {"表头6","表头62","表头621"},index = 7)
  17. private String p8;
  18. @ExcelProperty(value = {"表头6","表头62","表头622"},index = 8)
  19. private String p9;
  20. }

2.13、Controller层 编写Excel文件导入、模板导出 和 数据导出方法

  1. package com.easyexcel.controller;
  2. import com.easyexcel.Exception.ExcelException;
  3. import com.easyexcel.pojo.User;
  4. import com.easyexcel.service.UserService;
  5. import com.easyexcel.utils.ExcelUtils;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Controller;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RequestParam;
  10. import org.springframework.web.multipart.MultipartFile;
  11. import javax.servlet.http.HttpServletResponse;
  12. import java.io.IOException;
  13. import java.io.InputStream;
  14. import java.io.OutputStream;
  15. import java.util.List;
  16. @Controller
  17. public class ExcelController {
  18. @Autowired
  19. private UserService userService;
  20. /**
  21. * 导入带有表头注解的Java实体类模型
  22. * 导入单个Excel表
  23. *
  24. * @param excel 上传的Excel文件
  25. */
  26. @RequestMapping(value="/uploadExcel")
  27. public void uploadExcel(@RequestParam(value="file") MultipartFile excel){
  28. InputStream inputStream = null;
  29. try {
  30. //判断文件后缀是否以.xls 或者 .xlsx 结尾
  31. boolean flag = ExcelUtils.determineExcelIsFormatted(excel);
  32. if (!flag){
  33. throw new ExcelException("文件格式有误");
  34. }
  35. //获取文件输入流
  36. inputStream = excel.getInputStream();
  37. //获得User实体类对象集合
  38. List<User> users = (List<User>) ExcelUtils.readExcel(inputStream, User.class, 1);
  39. //批量插入到数据库user表中
  40. userService.insertAllOfUser(users);
  41. } catch (IOException e) {
  42. e.printStackTrace();
  43. } finally {
  44. //关闭字节输入流,释放资源
  45. if (inputStream != null) {
  46. try {
  47. inputStream.close();
  48. } catch (IOException e) {
  49. e.printStackTrace();
  50. }
  51. }
  52. }
  53. }
  54. /**
  55. * 导出带有表头注解的Java实体类模型
  56. * 导出模板,用于填写导入数据
  57. *
  58. * @param response HttpServletResponse响应
  59. */
  60. @RequestMapping(value="/downLoadExcelTemplate")
  61. public void downLoadExcelTemplate(HttpServletResponse response){
  62. //设置Excel表的名称
  63. String fileName = "User导入模板";
  64. //设置文件响应信息,并获得字节输出流
  65. OutputStream outputStream = ExcelUtils.setResponse(fileName, response);
  66. //把数据写入到Excel表格中
  67. ExcelUtils.writeExcel(outputStream,User.class,null);
  68. //关闭字节输入流,释放资源
  69. if(outputStream != null){
  70. try {
  71. outputStream.close();
  72. } catch (IOException e) {
  73. e.printStackTrace();
  74. }
  75. }
  76. }
  77. /**
  78. * 导出Excel数据表文件
  79. *
  80. * @param response HttpServletResponse响应
  81. */
  82. @RequestMapping(value="/downLoadExcel")
  83. public void downLoadExcel(HttpServletResponse response){
  84. //设置Excel表的名称
  85. String fileName = "User信息详情";
  86. //获得User实体类对象集合
  87. List<User> users = userService.selectAllOfUser();
  88. //设置文件响应信息,并获得字节输出流
  89. OutputStream outputStream = ExcelUtils.setResponse(fileName, response);
  90. //把数据写入到Excel表格中
  91. ExcelUtils.writeExcel(outputStream,User.class,users);
  92. //关闭字节输入流,释放资源
  93. if(outputStream != null){
  94. try {
  95. outputStream.close();
  96. } catch (IOException e) {
  97. e.printStackTrace();
  98. }
  99. }
  100. }
  101. }

3、使用EasyExcel导入、导出带有表头的无注解模型映射关系的数据模型的Excel

3.1、在ExcelUtils工具类中添加如下方法 (由于导入可以直接调用带有表头注解的Java实体类模型的导入方法,这里就不在陈述)

  1. /**
  2. * 导出带有表头的无注解模型映射关系的数据模型
  3. * 导出单个sheet 的Excel,带表头
  4. *
  5. * @param outputStream 字节输出流
  6. * @param data 实体对象集合
  7. * @param head 表头
  8. */
  9. public static void writeExcelWithOutJavaModel(OutputStream outputStream, List<List<Object>> data, List<List<String>> head) {
  10. writeExcelWithOutJavaModel(outputStream, "Data表格", data, head);
  11. }
  12. /**
  13. * 导出带有表头的无注解模型映射关系的数据模型
  14. * 导出单个sheet 的Excel,带表头,可自定义sheet表格名称
  15. *
  16. * @param outputStream 字节输出流
  17. * @param sheetName sheet表格名称
  18. * @param data 实体对象集合
  19. */
  20. public static void writeExcelWithOutJavaModel(OutputStream outputStream, String sheetName, List<List<Object>> data, List<List<String>> head) {
  21. BufferedOutputStream bufferedOutputStream = null;
  22. try {
  23. //包装成缓冲字节输入流
  24. bufferedOutputStream = new BufferedOutputStream(outputStream);
  25. //包装成缓冲字节输入流
  26. ExcelWriter writer = EasyExcelFactory.getWriter(outputStream);
  27. //创建sheet表格,并设置表格名称
  28. Sheet sheet = new Sheet(1, 0);
  29. sheet.setSheetName(sheetName);
  30. //设置自适应宽度
  31. sheet.setAutoWidth(Boolean.TRUE);
  32. //无注解模型映射关系的数据模型,动态添加表头
  33. Table table = new Table(1);
  34. table.setHead(head);
  35. //把数据写入表格,如果数据类型是List<List<String>>,请使用writer.write0(data, sheet)进行数据写入
  36. writer.write1(data, sheet, table);
  37. writer.finish();
  38. } catch (Exception e) {
  39. e.printStackTrace();
  40. } finally {
  41. //关闭缓冲字节输出流,释放资源
  42. if (bufferedOutputStream != null) {
  43. try {
  44. bufferedOutputStream.close();
  45. } catch (IOException e) {
  46. e.printStackTrace();
  47. }
  48. }
  49. }
  50. }

3.2、编写带有表头的无注解模型映射关系的数据模型的测试用例

  1. package com.easyexcel.test;
  2. import com.easyexcel.utils.ExcelUtils;
  3. import org.junit.Test;
  4. import java.io.*;
  5. import java.util.ArrayList;
  6. import java.util.List;
  7. public class EasyExcelTest {
  8. /**
  9. * 读取带有表头的无注解模型映射关系的数据模型
  10. * 单个指定sheet 的Excel,并导入到数据库中
  11. */
  12. @Test
  13. public void readExcelWithOutJavaModel() {
  14. InputStream fileInputStream = null;
  15. try {
  16. //读取data.xlsx表格,获得文件输入流
  17. fileInputStream = new FileInputStream("G:/data.xlsx");
  18. //获得dataList集合对象,注意:无注解模型映射关系的数据模型在读取Excel时,其Class参数传null就行
  19. List<List<Object>> dataList = (List<List<Object>>) ExcelUtils.readExcel(fileInputStream, null, 1);
  20. //循环打印获取到的dataList集合对象
  21. for (List<Object> list : dataList) {
  22. System.out.println(list);
  23. }
  24. } catch (FileNotFoundException e) {
  25. e.printStackTrace();
  26. } finally {
  27. //关闭文件输入流,释放资源
  28. if (fileInputStream != null) {
  29. try {
  30. fileInputStream.close();
  31. } catch (IOException e) {
  32. e.printStackTrace();
  33. }
  34. }
  35. }
  36. }
  37. /**
  38. * 导出带有表头的无注解模型映射关系的数据模型
  39. * 单个sheet 的Excel,带表头
  40. */
  41. @Test
  42. public void writeExcelWithOutJavaModel() {
  43. FileOutputStream fileOutputStream = null;
  44. try {
  45. //获取文件输出流
  46. fileOutputStream = new FileOutputStream("G:/create_data.xlsx");
  47. //动态创建数据,注意创建的数据类型是List<List<Object>>
  48. List<List<Object>> rows = new ArrayList<>();
  49. for (int i = 0; i < 10; i++) {
  50. List<Object> row = new ArrayList<>();
  51. row.add("2015435040" + i);
  52. row.add("李四--" + i);
  53. row.add(Integer.valueOf(10 + i));
  54. row.add("男");
  55. row.add("博客:浅末年华");
  56. rows.add(row);
  57. }
  58. //无注解模型映射关系的数据模型,动态创建表头数据
  59. List<List<String>> head = createTestListStringHead();
  60. //把数据写入到指定的Excel表格中
  61. ExcelUtils.writeExcelWithOutJavaModel(fileOutputStream, rows, head);
  62. } catch (FileNotFoundException e) {
  63. e.printStackTrace();
  64. } finally {
  65. if (fileOutputStream != null) {
  66. try {
  67. fileOutputStream.close();
  68. } catch (IOException e) {
  69. e.printStackTrace();
  70. }
  71. }
  72. }
  73. }
  74. /**
  75. * 无注解模型映射关系的数据模型,动态创建表头数据
  76. *
  77. * @return List<List<String>> 表头
  78. */
  79. public static List<List<String>> createTestListStringHead() {
  80. //无注解模型映射关系的数据模型,动态创建表头数据
  81. List<List<String>> head = new ArrayList<List<String>>();
  82. List<String> headCoulumn1 = new ArrayList<String>();
  83. List<String> headCoulumn2 = new ArrayList<String>();
  84. List<String> headCoulumn3 = new ArrayList<String>();
  85. List<String> headCoulumn4 = new ArrayList<String>();
  86. List<String> headCoulumn5 = new ArrayList<String>();
  87. headCoulumn1.add("第一列");headCoulumn1.add("第一列");headCoulumn1.add("第一列");
  88. headCoulumn2.add("第一列");headCoulumn2.add("第一列");headCoulumn2.add("第一列");
  89. headCoulumn3.add("第二列");headCoulumn3.add("第二列");headCoulumn3.add("第二列");
  90. headCoulumn4.add("第三列1");headCoulumn4.add("第三列2");headCoulumn4.add("第三列2");
  91. headCoulumn5.add("第四列");headCoulumn5.add("第四列1");headCoulumn5.add("第四列2");
  92. head.add(headCoulumn1);
  93. head.add(headCoulumn2);
  94. head.add(headCoulumn3);
  95. head.add(headCoulumn4);
  96. head.add(headCoulumn5);
  97. return head;
  98. }
  99. }

4、EasyExcel自定义导出带有表头注解的Java实体类模型的表头以及内容样式的Excel

方式一:通过调用Table类中的 setTableStyle(TableStyle tableStyle) 来设置表头以及内容样式

4.1、在ExcelUtils工具类中添加如下方法

  1. /**
  2. * 导出带有表头注解的Java实体类模型
  3. * 导出单个sheet 的Excel,带表头,可自定义sheet表格名称 和 Excel表格样式
  4. *
  5. * @param outputStream 字节输出流
  6. * @param clazz 类的字节码文件对象
  7. * @param sheetName sheet表格名称
  8. * @param data 实体对象集合
  9. * @param tableStyle Excel表格样式
  10. */
  11. public static void writeExcelWithStyle(OutputStream outputStream, Class clazz, String sheetName, List<? extends BaseRowModel> data, TableStyle tableStyle) {
  12. BufferedOutputStream bufferedOutputStream = null;
  13. try {
  14. //包装成缓冲字节输入流
  15. bufferedOutputStream = new BufferedOutputStream(outputStream);
  16. //包装成缓冲字节输入流
  17. ExcelWriter writer = EasyExcelFactory.getWriter(outputStream);
  18. //创建sheet表格,并设置表格名称
  19. Sheet sheet = new Sheet(1, 0, clazz);
  20. sheet.setSheetName(sheetName);
  21. //设置自适应宽度
  22. sheet.setAutoWidth(Boolean.TRUE);
  23. //设置Excel表格样式
  24. Table table = new Table(0);
  25. table.setTableStyle(tableStyle);
  26. table.setClazz(clazz);
  27. //把数据写入表格
  28. writer.write(data, sheet, table);
  29. writer.finish();
  30. } catch (Exception e) {
  31. e.printStackTrace();
  32. } finally {
  33. //关闭缓冲字节输出流,释放资源
  34. if (bufferedOutputStream != null) {
  35. try {
  36. bufferedOutputStream.close();
  37. } catch (IOException e) {
  38. e.printStackTrace();
  39. }
  40. }
  41. }
  42. }

4.2、编写导出带有表头注解的Java实体类模型的测试用例

  1. package com.easyexcel.test;
  2. import com.alibaba.excel.metadata.Font;
  3. import com.alibaba.excel.metadata.TableStyle;
  4. import com.easyexcel.pojo.User;
  5. import com.easyexcel.service.UserService;
  6. import com.easyexcel.utils.ExcelUtils;
  7. import org.apache.poi.ss.usermodel.IndexedColors;
  8. import org.junit.Before;
  9. import org.junit.Test;
  10. import org.springframework.context.support.ClassPathXmlApplicationContext;
  11. import java.io.*;
  12. import java.util.List;
  13. public class EasyExcelTest {
  14. private UserService userService;
  15. @Before
  16. public void init() {
  17. //读取applicationContext-spring.xml配置文件
  18. ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring/applicationContext-spring.xml");
  19. //获取Spring容器中已初始化的UserServiceImpl实例对象
  20. userService = (UserService) context.getBean("userServiceImpl");
  21. }
  22. /**
  23. * 导出带有表头注解的Java实体类模型
  24. * 导出单个sheet 的Excel,带表头和表格样式
  25. */
  26. @Test
  27. public void writeExcelWithStyle() {
  28. FileOutputStream fileOutputStream = null;
  29. try {
  30. //获取文件输出流
  31. fileOutputStream = new FileOutputStream("G:/create_user.xlsx");
  32. //获得User实体类对象集合
  33. List<User> users = userService.selectAllOfUser();
  34. //自定义表格样式
  35. TableStyle tableStyle = createTableStyle();
  36. //把数据写入到指定的Excel表格中
  37. ExcelUtils.writeExcelWithStyle(fileOutputStream, User.class, "User表格",users,tableStyle);
  38. } catch (FileNotFoundException e) {
  39. e.printStackTrace();
  40. } finally {
  41. if (fileOutputStream != null) {
  42. try {
  43. fileOutputStream.close();
  44. } catch (IOException e) {
  45. e.printStackTrace();
  46. }
  47. }
  48. }
  49. }
  50. /**
  51. * 自定义表格样式
  52. */
  53. public static TableStyle createTableStyle() {
  54. TableStyle tableStyle = new TableStyle();
  55. // 设置表头样式
  56. Font headFont = new Font();
  57. // 字体是否加粗
  58. headFont.setBold(true);
  59. // 字体大小
  60. headFont.setFontHeightInPoints((short)12);
  61. // 字体
  62. headFont.setFontName("楷体");
  63. tableStyle.setTableHeadFont(headFont);
  64. // 背景色
  65. tableStyle.setTableHeadBackGroundColor(IndexedColors.BLUE);
  66. // 设置表格内容样式
  67. Font contentFont = new Font();
  68. contentFont.setBold(true);
  69. contentFont.setFontHeightInPoints((short)12);
  70. contentFont.setFontName("黑体");
  71. tableStyle.setTableContentFont(contentFont);
  72. tableStyle.setTableContentBackGroundColor(IndexedColors.GREEN);
  73. return tableStyle;
  74. }
  75. }

4.3、测试导出Excel结果如下图所示

方式二:通过实现WriterHandler接口来实现自定义表头以及内容样式,WriterHandler接口中定义了如下三个方法:

void sheet(int sheetNo, Sheet sheet):在创建每个sheet后,自定义业务逻辑处理

void row(int rowNum, Row row):在创建每个row后,自定义业务逻辑处理

void cell(int cellNum, Cell cell):在创建每个cell后,自定义业务逻辑处理

4.1、编写自定义样式处理类ExcelStyleHandler,实现WriterHandler接口

  1. package com.easyexcel.handler;
  2. import com.alibaba.excel.event.WriteHandler;
  3. import org.apache.poi.ss.usermodel.*;
  4. public class ExcelStyleHandler implements WriteHandler {
  5. @Override
  6. public void sheet(int sheetNo, Sheet sheet) {
  7. }
  8. @Override
  9. public void row(int rowNum, Row row) {
  10. }
  11. @Override
  12. public void cell(int cellNum, Cell cell) {
  13. //这里可以获得Workbook是因为Sheet类有这个接口,但是其他地方没有对应的Sheet,所以要获得的话,需要用到反射了
  14. Workbook workbook = cell.getSheet().getWorkbook();
  15. CellStyle cellStyle = workbook.createCellStyle();
  16. Font font = workbook.createFont();
  17. //设置边框为细边框
  18. borderStyle(cellStyle,BorderStyle.THIN);
  19. //设置水平、垂直居中对齐
  20. alignmentStyle(cellStyle,HorizontalAlignment.CENTER,VerticalAlignment.CENTER);
  21. //设置标题行(表头)样式
  22. if(0 == cell.getRowIndex()){
  23. //设置字体样式
  24. fontStyle(cellStyle, font,IndexedColors.AQUA,true,14,"黑体");
  25. //设置设置单元格填充样式 和 颜色
  26. colorStyle(cellStyle,FillPatternType.SOLID_FOREGROUND,IndexedColors.LEMON_CHIFFON);
  27. }
  28. //设置表格内容样式
  29. if (cell.getRowIndex() > 0) {
  30. //设置字体样式
  31. fontStyle(cellStyle, font,IndexedColors.AQUA,true,14,"楷体");
  32. //设置设置单元格填充样式 和 颜色
  33. colorStyle(cellStyle,FillPatternType.SOLID_FOREGROUND,IndexedColors.TURQUOISE);
  34. }
  35. cell.getRow().getCell(cellNum).setCellStyle(cellStyle);
  36. }
  37. /**
  38. * 设置四周边框
  39. *
  40. * @param cellStyle 单元格样式实体对象
  41. */
  42. private void borderStyle(CellStyle cellStyle,BorderStyle borderStyle) {
  43. //设置上、下、左、右边框为细边框
  44. cellStyle.setBorderTop(borderStyle);
  45. cellStyle.setBorderBottom(borderStyle);
  46. cellStyle.setBorderLeft(borderStyle);
  47. cellStyle.setBorderRight(borderStyle);
  48. }
  49. /**
  50. * 设置水平和垂直对齐格式
  51. *
  52. * @param horizontalAlignment
  53. * @param verticalAlignment
  54. */
  55. private void alignmentStyle(CellStyle cellStyle, HorizontalAlignment horizontalAlignment, VerticalAlignment verticalAlignment) {
  56. // 水平居中对齐
  57. cellStyle.setAlignment(horizontalAlignment);
  58. // 垂直居中对齐
  59. cellStyle.setVerticalAlignment(verticalAlignment);
  60. }
  61. /**
  62. * 设置字体样式
  63. *
  64. * @param cellStyle 单元格样式实体对象
  65. * @param font 字体实体对象
  66. */
  67. private void fontStyle(CellStyle cellStyle, Font font,IndexedColors indexedColors,boolean isBold,int fontHeight,String fontName) {
  68. //设置字体颜色
  69. font.setColor(indexedColors.getIndex());
  70. //设置字体是否加粗
  71. font.setBold(isBold);
  72. //设置字体大小
  73. font.setFontHeightInPoints((short) fontHeight);
  74. //设置字体
  75. font.setFontName(fontName);
  76. cellStyle.setFont(font);
  77. }
  78. /**
  79. * 设置单元格填充样式 和 颜色
  80. *
  81. * @param cellStyle 单元格样式实体对象
  82. * @param fillPatternType 字体实体对象
  83. * @param indexedColors 字体实体对象
  84. */
  85. private void colorStyle(CellStyle cellStyle, FillPatternType fillPatternType, IndexedColors indexedColors) {
  86. //设置前景填充样式
  87. cellStyle.setFillPattern(fillPatternType);
  88. //前景填充色
  89. cellStyle.setFillForegroundColor(indexedColors.getIndex());
  90. }
  91. }

4.2、在ExcelUtils工具类中添加如下方法

  1. /**
  2. * 导出带有表头注解的Java实体类模型
  3. * 导出单个sheet 的Excel,带表头,可自定义sheet表格名称 和 Excel表格样式
  4. *
  5. * @param outputStream 字节输出流
  6. * @param clazz 类的字节码文件对象
  7. * @param sheetName sheet表格名称
  8. * @param data 实体对象集合
  9. * @param handler Excel表格样式
  10. */
  11. public static void writeExcelWithStyle(OutputStream outputStream, Class clazz, String sheetName, List<? extends BaseRowModel> data, WriteHandler handler) {
  12. BufferedOutputStream bufferedOutputStream = null;
  13. try {
  14. //包装成缓冲字节输入流
  15. bufferedOutputStream = new BufferedOutputStream(outputStream);
  16. //包装成缓冲字节输入流
  17. ExcelWriter writer = EasyExcelFactory.getWriterWithTempAndHandler(null, outputStream, ExcelTypeEnum.XLSX, true, handler);
  18. //创建sheet表格,并设置表格名称
  19. Sheet sheet = new Sheet(1, 0, clazz);
  20. sheet.setSheetName(sheetName);
  21. //设置自适应宽度
  22. sheet.setAutoWidth(Boolean.TRUE);
  23. //把数据写入表格
  24. writer.write(data, sheet);
  25. writer.finish();
  26. } catch (Exception e) {
  27. e.printStackTrace();
  28. } finally {
  29. //关闭缓冲字节输出流,释放资源
  30. if (bufferedOutputStream != null) {
  31. try {
  32. bufferedOutputStream.close();
  33. } catch (IOException e) {
  34. e.printStackTrace();
  35. }
  36. }
  37. }
  38. }

4.3、编写导出带有表头注解的Java实体类模型的Excel表格样式的测试用例

  1. package com.easyexcel.test;
  2. import com.easyexcel.handler.ExcelStyleHandler;
  3. import com.easyexcel.pojo.User;
  4. import com.easyexcel.service.UserService;
  5. import com.easyexcel.utils.ExcelUtils;
  6. import org.junit.Before;
  7. import org.junit.Test;
  8. import org.springframework.context.support.ClassPathXmlApplicationContext;
  9. import java.io.FileNotFoundException;
  10. import java.io.FileOutputStream;
  11. import java.io.IOException;
  12. import java.util.List;
  13. public class EasyExcelTest {
  14. private UserService userService;
  15. @Before
  16. public void init() {
  17. //读取applicationContext-spring.xml配置文件
  18. ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring/applicationContext-spring.xml");
  19. //获取Spring容器中已初始化的UserServiceImpl实例对象
  20. userService = (UserService) context.getBean("userServiceImpl");
  21. }
  22. /**
  23. * 导出带有表头注解的Java实体类模型
  24. * 导出单个sheet 的Excel,带表头和表格样式
  25. */
  26. @Test
  27. public void writeExcelWithStyle() {
  28. FileOutputStream fileOutputStream = null;
  29. try {
  30. //获取文件输出流
  31. fileOutputStream = new FileOutputStream("G:/create_user.xlsx");
  32. //获得User实体类对象集合
  33. List<User> users = userService.selectAllOfUser();
  34. //自定义表格样式
  35. ExcelStyleHandler handler = new ExcelStyleHandler();
  36. //把数据写入到指定的Excel表格中
  37. ExcelUtils.writeExcelWithStyle(fileOutputStream, User.class, "User表格",users,handler);
  38. } catch (FileNotFoundException e) {
  39. e.printStackTrace();
  40. } finally {
  41. if (fileOutputStream != null) {
  42. try {
  43. fileOutputStream.close();
  44. } catch (IOException e) {
  45. e.printStackTrace();
  46. }
  47. }
  48. }
  49. }
  50. }

4.4、测试导出Excel结果如下图所示

5、EasyExcel自定义导出带有表头的无注解模型映射关系的数据模型的表头以及内容样式Excel

5.1、在ExcelUtils工具类中添加如下方法

  1. /**
  2. * 导出带有表头的无注解模型映射关系的数据模型
  3. * 导出单个sheet 的Excel,带表头,可自定义sheet表格名称 和 Excel表格样式
  4. *
  5. * @param outputStream 字节输出流
  6. * @param sheetName sheet表格名称
  7. * @param data 实体对象集合
  8. * @param tableStyle 实体对象集合
  9. */
  10. public static void writeExcelWithOutJavaModelOfStyle(OutputStream outputStream, String sheetName, List<List<Object>> data, List<List<String>> head, TableStyle tableStyle) {
  11. BufferedOutputStream bufferedOutputStream = null;
  12. try {
  13. //包装成缓冲字节输入流
  14. bufferedOutputStream = new BufferedOutputStream(outputStream);
  15. //包装成缓冲字节输入流
  16. ExcelWriter writer = EasyExcelFactory.getWriter(outputStream);
  17. //创建sheet表格,并设置表格名称
  18. Sheet sheet = new Sheet(1, 0);
  19. sheet.setSheetName(sheetName);
  20. //设置自适应宽度
  21. sheet.setAutoWidth(Boolean.TRUE);
  22. //无注解模型映射关系的数据模型,动态添加表头
  23. Table table = new Table(1);
  24. table.setHead(head);
  25. //设置Excel表格样式
  26. table.setTableStyle(tableStyle);
  27. //把数据写入表格,如果数据类型是List<List<String>>,请使用writer.write0(data, sheet)进行数据写入
  28. writer.write1(data, sheet, table);
  29. writer.finish();
  30. } catch (Exception e) {
  31. e.printStackTrace();
  32. } finally {
  33. //关闭缓冲字节输出流,释放资源
  34. if (bufferedOutputStream != null) {
  35. try {
  36. bufferedOutputStream.close();
  37. } catch (IOException e) {
  38. e.printStackTrace();
  39. }
  40. }
  41. }
  42. }

5.2、编写带有表头的无注解模型映射关系的数据模型的Excel表格样式的测试用例

  1. package com.easyexcel.test;
  2. import com.alibaba.excel.metadata.TableStyle;
  3. import com.easyexcel.utils.ExcelUtils;
  4. import org.apache.poi.ss.usermodel.IndexedColors;
  5. import org.junit.Test;
  6. import java.io.*;
  7. import java.util.ArrayList;
  8. import java.util.List;
  9. public class EasyExcelTest {
  10. /**
  11. * 导出带有表头的无注解模型映射关系的数据模型
  12. * 单个sheet 的Excel,带表头
  13. */
  14. @Test
  15. public void writeExcelWithOutJavaModel() {
  16. FileOutputStream fileOutputStream = null;
  17. try {
  18. //获取文件输出流
  19. fileOutputStream = new FileOutputStream("G:/create_data.xlsx");
  20. //动态创建数据,注意创建的数据类型是List<List<Object>>
  21. List<List<Object>> rows = new ArrayList<>();
  22. for (int i = 0; i < 10; i++) {
  23. List<Object> row = new ArrayList<>();
  24. row.add("2015435040" + i);
  25. row.add("李四--" + i);
  26. row.add(Integer.valueOf(10 + i));
  27. row.add("男");
  28. row.add("博客:浅末年华");
  29. rows.add(row);
  30. }
  31. //无注解模型映射关系的数据模型,动态创建表头数据
  32. List<List<String>> head = createTestListStringHead();
  33. //自定义表格样式
  34. TableStyle tableStyle = createTableStyle();
  35. //把数据写入到指定的Excel表格中
  36. ExcelUtils.writeExcelWithOutJavaModelOfStyle(fileOutputStream, "Data表格", rows, head, tableStyle);
  37. } catch (FileNotFoundException e) {
  38. e.printStackTrace();
  39. } finally {
  40. if (fileOutputStream != null) {
  41. try {
  42. fileOutputStream.close();
  43. } catch (IOException e) {
  44. e.printStackTrace();
  45. }
  46. }
  47. }
  48. }
  49. /**
  50. * 无注解模型映射关系的数据模型,动态创建表头数据
  51. *
  52. * @return List<List < String>> 表头
  53. */
  54. public static List<List<String>> createTestListStringHead() {
  55. //无注解模型映射关系的数据模型,动态创建表头数据
  56. List<List<String>> head = new ArrayList<List<String>>();
  57. List<String> headCoulumn1 = new ArrayList<String>();
  58. List<String> headCoulumn2 = new ArrayList<String>();
  59. List<String> headCoulumn3 = new ArrayList<String>();
  60. List<String> headCoulumn4 = new ArrayList<String>();
  61. List<String> headCoulumn5 = new ArrayList<String>();
  62. headCoulumn1.add("第一列");headCoulumn1.add("第一列");headCoulumn1.add("第一列");
  63. headCoulumn2.add("第一列");headCoulumn2.add("第一列");headCoulumn2.add("第一列");
  64. headCoulumn3.add("第二列");headCoulumn3.add("第二列");headCoulumn3.add("第二列");
  65. headCoulumn4.add("第三列1");headCoulumn4.add("第三列2");headCoulumn4.add("第三列2");
  66. headCoulumn5.add("第四列");headCoulumn5.add("第四列1");headCoulumn5.add("第四列2");
  67. head.add(headCoulumn1);
  68. head.add(headCoulumn2);
  69. head.add(headCoulumn3);
  70. head.add(headCoulumn4);
  71. head.add(headCoulumn5);
  72. return head;
  73. }
  74. /**
  75. * 自定义表格样式
  76. */
  77. public static com.alibaba.excel.metadata.TableStyle createTableStyle() {
  78. com.alibaba.excel.metadata.TableStyle tableStyle = new com.alibaba.excel.metadata.TableStyle();
  79. // 设置表头样式
  80. com.alibaba.excel.metadata.Font headFont = new com.alibaba.excel.metadata.Font();
  81. // 字体是否加粗
  82. headFont.setBold(true);
  83. // 字体大小
  84. headFont.setFontHeightInPoints((short) 12);
  85. // 字体
  86. headFont.setFontName("楷体");
  87. tableStyle.setTableHeadFont(headFont);
  88. // 背景色
  89. tableStyle.setTableHeadBackGroundColor(IndexedColors.BLUE);
  90. // 设置表格内容样式
  91. com.alibaba.excel.metadata.Font contentFont = new com.alibaba.excel.metadata.Font();
  92. contentFont.setBold(true);
  93. contentFont.setFontHeightInPoints((short) 12);
  94. contentFont.setFontName("黑体");
  95. tableStyle.setTableContentFont(contentFont);
  96. tableStyle.setTableContentBackGroundColor(IndexedColors.GREEN);
  97. return tableStyle;
  98. }
  99. }

6、使用EasyExcel合并单元格,通过调用ExcelWriter类中的 merge(int firstRow, int lastRow, int firstCol, int lastCol) 来合并单元格

merge方法的四个参数:

     firstRow:开始合并的行数 、lastRow:结束合并的行数、firstCol:开始合并的列数、astCol:结束合并的列数

需要注意的是:行数 和 列数的下标是从0开始的,同时对应的 last 的值必须大于 first 的值

  1. package com.easyexcel.test;
  2. import com.alibaba.excel.EasyExcelFactory;
  3. import com.alibaba.excel.ExcelWriter;
  4. import com.alibaba.excel.metadata.Sheet;
  5. import com.alibaba.excel.metadata.Table;
  6. import org.junit.Test;
  7. import java.io.FileNotFoundException;
  8. import java.io.FileOutputStream;
  9. import java.io.IOException;
  10. import java.util.ArrayList;
  11. import java.util.List;
  12. public class EasyExcelTest {
  13. /**
  14. * 导出带有表头的无注解模型映射关系的数据模型
  15. * 单个sheet 的Excel,带表头并合并单元格
  16. */
  17. @Test
  18. public void writeExcelWithOutJavaModel() {
  19. FileOutputStream fileOutputStream = null;
  20. try {
  21. //获取文件输出流
  22. fileOutputStream = new FileOutputStream("G:/create_data.xlsx");
  23. //动态创建数据,注意创建的数据类型是List<List<Object>>
  24. List<List<Object>> rows = new ArrayList<>();
  25. for (int i = 0; i < 10; i++) {
  26. List<Object> row = new ArrayList<>();
  27. row.add("2015435040" + i);
  28. row.add("李四--" + i);
  29. row.add(Integer.valueOf(10 + i));
  30. row.add("男");
  31. row.add("博客:浅末年华");
  32. rows.add(row);
  33. }
  34. //无注解模型映射关系的数据模型,动态创建表头数据
  35. List<List<String>> head = createTestListStringHead();
  36. //包装成缓冲字节输入流
  37. ExcelWriter writer = EasyExcelFactory.getWriter(fileOutputStream);
  38. //创建sheet表格,并设置表格名称
  39. Sheet sheet = new Sheet(1, 0);
  40. sheet.setSheetName("合并单元格");
  41. //设置自适应宽度
  42. sheet.setAutoWidth(Boolean.TRUE);
  43. //无注解模型映射关系的数据模型,动态添加表头
  44. Table table = new Table(1);
  45. table.setHead(head);
  46. //把数据写入表格,如果数据类型是List<List<String>>,请使用writer.write0(data, sheet)进行数据写入
  47. writer.write1(rows, sheet, table);
  48. //合并单元格,表示把第四行到第六行、第一列到第二列进行合并
  49. writer.merge(3,5,0,1);
  50. writer.finish();
  51. } catch (FileNotFoundException e) {
  52. e.printStackTrace();
  53. } finally {
  54. if (fileOutputStream != null) {
  55. try {
  56. fileOutputStream.close();
  57. } catch (IOException e) {
  58. e.printStackTrace();
  59. }
  60. }
  61. }
  62. }
  63. /**
  64. * 无注解模型映射关系的数据模型,动态创建表头数据
  65. *
  66. * @return List<List<String>> 表头
  67. */
  68. public static List<List<String>> createTestListStringHead() {
  69. //无注解模型映射关系的数据模型,动态创建表头数据
  70. List<List<String>> head = new ArrayList<List<String>>();
  71. List<String> headCoulumn1 = new ArrayList<String>();
  72. List<String> headCoulumn2 = new ArrayList<String>();
  73. List<String> headCoulumn3 = new ArrayList<String>();
  74. List<String> headCoulumn4 = new ArrayList<String>();
  75. List<String> headCoulumn5 = new ArrayList<String>();
  76. headCoulumn1.add("第一列");headCoulumn1.add("第一列");headCoulumn1.add("第一列");
  77. headCoulumn2.add("第一列");headCoulumn2.add("第一列");headCoulumn2.add("第一列");
  78. headCoulumn3.add("第二列");headCoulumn3.add("第二列");headCoulumn3.add("第二列");
  79. headCoulumn4.add("第三列1");headCoulumn4.add("第三列2");headCoulumn4.add("第三列2");
  80. headCoulumn5.add("第四列");headCoulumn5.add("第四列1");headCoulumn5.add("第四列2");
  81. head.add(headCoulumn1);
  82. head.add(headCoulumn2);
  83. head.add(headCoulumn3);
  84. head.add(headCoulumn4);
  85. head.add(headCoulumn5);
  86. return head;
  87. }
  88. }

6.1、测试导出Excel结果如下图所示

7、使用EasyExcel实现一个Excel写入多个Sheet表格

  1. package com.easyexcel.test;
  2. import com.alibaba.excel.EasyExcelFactory;
  3. import com.alibaba.excel.ExcelWriter;
  4. import com.alibaba.excel.metadata.Font;
  5. import com.alibaba.excel.metadata.Sheet;
  6. import com.alibaba.excel.metadata.TableStyle;
  7. import com.easyexcel.pojo.User;
  8. import com.easyexcel.service.UserService;
  9. import org.apache.poi.ss.usermodel.IndexedColors;
  10. import org.junit.Before;
  11. import org.junit.Test;
  12. import org.springframework.context.support.ClassPathXmlApplicationContext;
  13. import java.io.FileNotFoundException;
  14. import java.io.FileOutputStream;
  15. import java.io.IOException;
  16. import java.util.ArrayList;
  17. import java.util.List;
  18. public class EasyExcelTest {
  19. private UserService userService;
  20. @Before
  21. public void init() {
  22. //读取applicationContext-spring.xml配置文件
  23. ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring/applicationContext-spring.xml");
  24. //获取Spring容器中已初始化的UserServiceImpl实例对象
  25. userService = (UserService) context.getBean("userServiceImpl");
  26. }
  27. /**
  28. * 导出带有表头注解的Java实体类模型
  29. * 导出单个sheet 的Excel,带表头和表格样式
  30. */
  31. @Test
  32. public void writeExcelWithStyle() {
  33. FileOutputStream fileOutputStream = null;
  34. try {
  35. //获取文件输出流
  36. fileOutputStream = new FileOutputStream("G:/create_data.xlsx");
  37. ExcelWriter writer = EasyExcelFactory.getWriter(fileOutputStream);
  38. //动态创建数据
  39. List<List<Object>> list = createDynamicModelList();
  40. //获得User实体类对象集合
  41. List<User> users = userService.selectAllOfUser();
  42. //写第一个sheet, sheet1 数据是List<List<Object>> 无注解模型映射关系的数据模型,无表头
  43. Sheet sheet1 = new Sheet(1, 0);
  44. sheet1.setSheetName("第一个sheet");
  45. sheet1.setAutoWidth(Boolean.TRUE);
  46. sheet1.setStartRow(-1);
  47. writer.write1(list, sheet1);
  48. //写第二个sheet,sheet2 数据是List<User> 有表头注解的Java实体类模型
  49. Sheet sheet2 = new Sheet(2, 0, User.class);
  50. sheet2.setSheetName("第二个sheet");
  51. sheet2.setAutoWidth(Boolean.TRUE);
  52. writer.write(users, sheet2);
  53. //写第三个sheet,sheet3 数据是List<List<Object>> 带有表头以及内容样式
  54. List<List<String>> head = createTestListStringHead();
  55. //自定义表格样式
  56. TableStyle tableStyle = createTableStyle();
  57. Sheet sheet3 = new Sheet(3, 0, null, "第三个sheet", head);
  58. sheet3.setAutoWidth(Boolean.TRUE);
  59. sheet3.setTableStyle(tableStyle);
  60. writer.write1(list, sheet3);
  61. writer.finish();
  62. } catch (FileNotFoundException e) {
  63. e.printStackTrace();
  64. } finally {
  65. if (fileOutputStream != null) {
  66. try {
  67. fileOutputStream.close();
  68. } catch (IOException e) {
  69. e.printStackTrace();
  70. }
  71. }
  72. }
  73. }
  74. /**
  75. * 动态创建数据
  76. */
  77. public List<List<Object>> createDynamicModelList() {
  78. //动态创建数据,注意创建的数据类型是List<List<Object>>
  79. List<List<Object>> rows = new ArrayList<>();
  80. for (int i = 0; i < 10; i++) {
  81. List<Object> row = new ArrayList<>();
  82. row.add("2015435040" + i);
  83. row.add("李四--" + i);
  84. row.add(Integer.valueOf(10 + i));
  85. row.add("男");
  86. row.add("博客:浅末年华");
  87. rows.add(row);
  88. }
  89. return rows;
  90. }
  91. /**
  92. * 自定义表格样式
  93. */
  94. public static TableStyle createTableStyle() {
  95. TableStyle tableStyle = new TableStyle();
  96. // 设置表头样式
  97. Font headFont = new Font();
  98. // 字体是否加粗
  99. headFont.setBold(true);
  100. // 字体大小
  101. headFont.setFontHeightInPoints((short) 12);
  102. // 字体
  103. headFont.setFontName("楷体");
  104. tableStyle.setTableHeadFont(headFont);
  105. // 背景色
  106. tableStyle.setTableHeadBackGroundColor(IndexedColors.BLUE);
  107. // 设置表格内容样式
  108. Font contentFont = new Font();
  109. contentFont.setBold(true);
  110. contentFont.setFontHeightInPoints((short) 12);
  111. contentFont.setFontName("黑体");
  112. tableStyle.setTableContentFont(contentFont);
  113. tableStyle.setTableContentBackGroundColor(IndexedColors.GREEN);
  114. return tableStyle;
  115. }
  116. /**
  117. * 无注解模型映射关系的数据模型,动态创建表头数据
  118. *
  119. * @return List<List<String>> 表头
  120. */
  121. public static List<List<String>> createTestListStringHead() {
  122. //无注解模型映射关系的数据模型,动态创建表头数据
  123. List<List<String>> head = new ArrayList<List<String>>();
  124. List<String> headCoulumn1 = new ArrayList<String>();
  125. List<String> headCoulumn2 = new ArrayList<String>();
  126. List<String> headCoulumn3 = new ArrayList<String>();
  127. List<String> headCoulumn4 = new ArrayList<String>();
  128. List<String> headCoulumn5 = new ArrayList<String>();
  129. headCoulumn1.add("第一列");headCoulumn1.add("第一列");headCoulumn1.add("第一列");
  130. headCoulumn2.add("第一列");headCoulumn2.add("第一列");headCoulumn2.add("第一列");
  131. headCoulumn3.add("第二列");headCoulumn3.add("第二列");headCoulumn3.add("第二列");
  132. headCoulumn4.add("第三列1");headCoulumn4.add("第三列2");headCoulumn4.add("第三列2");
  133. headCoulumn5.add("第四列");headCoulumn5.add("第四列1");headCoulumn5.add("第四列2");
  134. head.add(headCoulumn1);
  135. head.add(headCoulumn2);
  136. head.add(headCoulumn3);
  137. head.add(headCoulumn4);
  138. head.add(headCoulumn5);
  139. return head;
  140. }
  141. }

7.1、测试导出Excel结果如下图所示

8、使用EasyExcel实现Excel中一个Sheet表格写入多个Table表格

  1. package com.easyexcel.test;
  2. import com.alibaba.excel.EasyExcelFactory;
  3. import com.alibaba.excel.ExcelWriter;
  4. import com.alibaba.excel.metadata.Font;
  5. import com.alibaba.excel.metadata.Sheet;
  6. import com.alibaba.excel.metadata.Table;
  7. import com.alibaba.excel.metadata.TableStyle;
  8. import com.easyexcel.pojo.User;
  9. import com.easyexcel.service.UserService;
  10. import org.apache.poi.ss.usermodel.IndexedColors;
  11. import org.junit.Before;
  12. import org.junit.Test;
  13. import org.springframework.context.support.ClassPathXmlApplicationContext;
  14. import java.io.FileNotFoundException;
  15. import java.io.FileOutputStream;
  16. import java.io.IOException;
  17. import java.util.ArrayList;
  18. import java.util.List;
  19. public class EasyExcelTest {
  20. private UserService userService;
  21. @Before
  22. public void init() {
  23. //读取applicationContext-spring.xml配置文件
  24. ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring/applicationContext-spring.xml");
  25. //获取Spring容器中已初始化的UserServiceImpl实例对象
  26. userService = (UserService) context.getBean("userServiceImpl");
  27. }
  28. /**
  29. * 导出带有表头注解的Java实体类模型
  30. * 导出单个sheet 的Excel,带表头和表格样式
  31. */
  32. @Test
  33. public void writeExcelWithStyle() {
  34. FileOutputStream fileOutputStream = null;
  35. try {
  36. //获取文件输出流
  37. fileOutputStream = new FileOutputStream("G:/create_data.xlsx");
  38. ExcelWriter writer = EasyExcelFactory.getWriter(fileOutputStream);
  39. //动态创建数据
  40. List<List<Object>> list = createDynamicModelList();
  41. //获得User实体类对象集合
  42. List<User> users = userService.selectAllOfUser();
  43. //创建Sheet
  44. Sheet sheet = new Sheet(1, 0);
  45. sheet.setSheetName("第一个sheet");
  46. sheet.setAutoWidth(Boolean.TRUE);
  47. sheet.setStartRow(-1);
  48. //写第一个table, table1 数据是List<List<Object>> 无注解模型映射关系的数据模型,无表头
  49. Table table1 = new Table(1);
  50. writer.write1(list,sheet,table1);
  51. //写第二个table,table2 数据是List<User> 有表头注解的Java实体类模型
  52. Table table2 = new Table(2);
  53. table2.setClazz(User.class);
  54. writer.write(users, sheet,table2);
  55. //写第三个table,table3 数据是List<List<Object>> 带有表头以及内容样式
  56. List<List<String>> head = createTestListStringHead();
  57. //自定义表格样式
  58. TableStyle tableStyle = createTableStyle();
  59. Table table3 = new Table(3);
  60. table3.setHead(head);
  61. table3.setTableStyle(tableStyle);
  62. writer.write1(list, sheet, table3);
  63. writer.finish();
  64. } catch (FileNotFoundException e) {
  65. e.printStackTrace();
  66. } finally {
  67. if (fileOutputStream != null) {
  68. try {
  69. fileOutputStream.close();
  70. } catch (IOException e) {
  71. e.printStackTrace();
  72. }
  73. }
  74. }
  75. }
  76. /**
  77. * 动态创建数据
  78. */
  79. public List<List<Object>> createDynamicModelList() {
  80. //动态创建数据,注意创建的数据类型是List<List<Object>>
  81. List<List<Object>> rows = new ArrayList<>();
  82. for (int i = 0; i < 10; i++) {
  83. List<Object> row = new ArrayList<>();
  84. row.add("2015435040" + i);
  85. row.add("李四--" + i);
  86. row.add(Integer.valueOf(10 + i));
  87. row.add("男");
  88. row.add("博客:浅末年华");
  89. rows.add(row);
  90. }
  91. return rows;
  92. }
  93. /**
  94. * 自定义表格样式
  95. */
  96. public static TableStyle createTableStyle() {
  97. TableStyle tableStyle = new TableStyle();
  98. // 设置表头样式
  99. Font headFont = new Font();
  100. // 字体是否加粗
  101. headFont.setBold(true);
  102. // 字体大小
  103. headFont.setFontHeightInPoints((short) 12);
  104. // 字体
  105. headFont.setFontName("楷体");
  106. tableStyle.setTableHeadFont(headFont);
  107. // 背景色
  108. tableStyle.setTableHeadBackGroundColor(IndexedColors.BLUE);
  109. // 设置表格内容样式
  110. Font contentFont = new Font();
  111. contentFont.setBold(true);
  112. contentFont.setFontHeightInPoints((short) 12);
  113. contentFont.setFontName("黑体");
  114. tableStyle.setTableContentFont(contentFont);
  115. tableStyle.setTableContentBackGroundColor(IndexedColors.GREEN);
  116. return tableStyle;
  117. }
  118. /**
  119. * 无注解模型映射关系的数据模型,动态创建表头数据
  120. *
  121. * @return List<List<String>> 表头
  122. */
  123. public static List<List<String>> createTestListStringHead() {
  124. //无注解模型映射关系的数据模型,动态创建表头数据
  125. List<List<String>> head = new ArrayList<List<String>>();
  126. List<String> headCoulumn1 = new ArrayList<String>();
  127. List<String> headCoulumn2 = new ArrayList<String>();
  128. List<String> headCoulumn3 = new ArrayList<String>();
  129. List<String> headCoulumn4 = new ArrayList<String>();
  130. List<String> headCoulumn5 = new ArrayList<String>();
  131. headCoulumn1.add("第一列");headCoulumn1.add("第一列");headCoulumn1.add("第一列");
  132. headCoulumn2.add("第一列");headCoulumn2.add("第一列");headCoulumn2.add("第一列");
  133. headCoulumn3.add("第二列");headCoulumn3.add("第二列");headCoulumn3.add("第二列");
  134. headCoulumn4.add("第三列1");headCoulumn4.add("第三列2");headCoulumn4.add("第三列2");
  135. headCoulumn5.add("第四列");headCoulumn5.add("第四列1");headCoulumn5.add("第四列2");
  136. head.add(headCoulumn1);
  137. head.add(headCoulumn2);
  138. head.add(headCoulumn3);
  139. head.add(headCoulumn4);
  140. head.add(headCoulumn5);
  141. return head;
  142. }
  143. }

8.1、测试导出Excel结果如下图所示

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/编程探险家/article/detail/61071
推荐阅读
相关标签
  

闽ICP备14008679号