当前位置:   article > 正文

通过xml配置实现数据动态导入导出Excel

通过xml配置实现数据动态导入导出Excel

spring-dj-excel-common.jar 一个可以通过动态配置 xml 建立 Excel 与数据关系现实数据导入导出的 spring 组件包,在 xml 配置文件里,你可以很方便的定义 Excel - sheet 表列头文本与数据表、数据实体属性的对应关系,对于创建 Excel 文件,你可以通过增加某一标签列的子项实现列头跨列展示效果,同时你也可以通过设置列头对应的样式属性 headStyle 来设置sheet表列头的文字、颜色、边框的展示效果,你也可以针对每一列进行单独的样式设置。

首先,为Excel文件与项目中的数据模型和数据表之间的关系创建一个配置文件,如果要将数据导入到Excel文件中,那么也可以在配置文件中对Excel文件进行基本的样式设置,例如,可以设置列宽, Excel 的文本大小、颜色、字体等。

单击此链接,可以下载资源编译代码生成的 JAR 包文件

单击此链接,可以下载 spring-dj-excel-common.jar 包的源代码

下面是一个简单的配置文件示例,配置文件名称可以根据实际业务进行命名,可以在源码包的 resources/excelconfigs 路径下看到示例配置文件。

  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <FieldMappings table="UserInfo"
  3.                title="User information"
  4.                headStyle="text-align:center;text-valign:center;background-color:green;color:white;border-width:1px;border-color:yellow;">    
  5.     <column alias="name" allowEmpty="false" columnWidth="100" length="5" name="name" text="Name" type="string" style=""/>
  6.     <column alias="sex" allowEmpty="false" columnWidth="80" length="1" name="gender" text="Gender" type="string" style=""/>
  7.     <column alias="age" allowEmpty="true" columnWidth="80" name="age" text="Age" type="int" style=""/>
  8.     <column alias="phone" allowEmpty="false" columnWidth="180" length="20" name="phone" text="Phone" type="string" style=""/>
  9.     <!--If the column has children, it means that the parent column needs to be displayed across columns-->
  10.     <column alias="course" name="course" text="Course">
  11.         <column index="1" alias="chinese" allowEmpty="false" columnWidth="120" length="0" name="chinese" text="Chinese" type="float" style=""/>
  12.         <column index="2" alias="physics" allowEmpty="false" columnWidth="120" length="0" name="physics" text="Physics" type="float" style=""/>
  13.     </column>
  14.     <column alias="address" allowEmpty="true" width="300" length="100" name="address" text="Address" type="string" style=""/>
  15. </FieldMappings>


FieldMapping 标签属性说明:
table - 表名称,程序中数据导入导出时在调用方法时作为参数使用
title - 标题,数据导入到 Excel 中时,数里该属性值不为空,sheet表的首行首列将显示该属性值
headStyle - 设置 Excel 中数据列头的显示效果,可以设置单元格背景颜色、单元格前景色、单元格边框线宽和边框线颜色、文本大小、文本在单元格中的位置、文本字体类型、文本粗体


column 标签属性说明:
name - 对相应数据表中的列的名称
index - 序号, 设置列在 Excel 表中显示顺序, 如果不设置按配置文件中从上至下顺序依次显示
alias - 列的别名(对应于数据模型的属性名称)
text - Excel 文件中表格的列标题文本
columnWidth - 设置 Excel 文件中表的列宽,也可以使用 width 属性
allowEmpty - 在将数据导入 Excel 时,是否允许数据为空, 设置为 true 表示允许为空
type - 数据类型, 类型范围: string, int, float, double, boolean, date
length - 数据允许的长度,类型为 string 时有效
style - 为指定列设置单独的样式,与 headStyle 类似,此属性优先级高于 FieldMapping 标签中的 headStyle 属性
headStyle - 单独设置当前列在 Excel 文件中标题样式,优先级高于 style 属性及 FieldMapping 标签中的 headStyle 属性,可以设置单元格背景颜色、单元格前景色、单元格边框线宽和边框线颜色、文本大小、文本在单元格中的位置、文本字体类型、文本粗体
dataStyle - 单独设置当前列在 Excel 文件中数据单元样式,优先级高于 style 属性

通常,配置文件位于项目的资源目录中:
main
--java
--resources
----excelconfig
------excel-user-info.xml
----application.yml

向启动类添加 @EnableExcelConfigScan 注解,并指定 XML 配置文件目录位置。
示例:

  1.   @SpringBootApplicatio
  2.   @EnableExcelConfigScan(configPackages = {"excelconfig"})
  3.   public class UserInformationApplication {
  4.       public static void main(String[] args) {
  5.           SpringApplication.run(UserInformationApplication.class, args);
  6.       }
  7.   }

如何使用该组件呢?

该组件支持xls和xlsx文件格式两种格式的数据导入和导出,在程序中,Excel2003表示后缀为xls文件格式,Excel2007表示xlsx文件格式后缀。

1、从 Excel 文件获取数据

  1. @Autowired
  2. private IExcel2003Export excel2003Export;
  3. @Autowired
  4. private IExcel2007Import excel2007Import;
  5. @Test
  6. void getDataFromExcel() throws Exception {        
  7.     String fPath = "D:\\user-info.xls";
  8.     //The third parameter value 'UserInfo', corresponds to the value of the table attribute in the xml configuration file
  9.     excel2003Export.exportToEntityFromFile(fPath, "Sheet1", "UserInfo", UserInfo.class, ((entity, rowIndex) -> {
  10.         //Get the data for each row in the Excel file
  11.         System.out.println("row: " + rowIndex + ", data: " + entity.toString());
  12.         return true;
  13.     }));
  14. }

2、把数据导入到 Excel 中

  1. @Autowired
  2. private IExcel2003Import excel2003Import;
  3. @Autowired
  4. private IExcel2007Import excel2007Import;
  5. private byte[] createExcel(IExcelImport excelImport) {
  6.     String extName = "xls";
  7.     if (IExcel2007Import.class.isAssignableFrom(excelImport.getClass())) extName = "xlsx";   
  8.     try {
  9.         //Getting an IExcelBuilder interface object is equivalent to creating a new sheet form
  10.         IExcelBuilder builder = excelImport.createBuilder("UserInfo");
  11.         UserInfo userInfo = new UserInfo();
  12.         userInfo.setName("DJ").setAge(18).setPhone("1231456789").setGender(1).setUid("admin")
  13.                 .setPwd("admin").setEmail("dj@qq.com").setAddress("China")
  14.                 .setOrder_by(1).setIs_enabled(true);
  15.         builder.createRow(userInfo, UserInfo.class);
  16.         //Here we get another IExcelBuilder interface object, and we create a new sheet again
  17.         builder = excelImport.createBuilder("UserInfo");
  18.         builder.setSheetName("UserInfoQueryDTO");
  19.         //Here's how to get the UserInfo data from the database and import it into the newly created sheet table
  20.         List<UserInfoQueryDTO> dtos = findUserInfoByName("allan");
  21.         builder.createRows(dtos, UserInfoQueryDTO.class);
  22.         byte[] datas = excelImport.getBytes();
  23.         //You can also choose to save the created Excel file to a specified disk location
  24.         //excelImport.save("D:\\user-info.xlsx");
  25.         return datas;
  26.     } catch (Exception e) {
  27.         System.out.println("Excel import exception: " + e);
  28.     } finally {
  29.         try {
  30.             excelImport.close();
  31.         } catch (Exception e) {
  32.             //
  33.         }
  34.     }
  35.     return new byte[0];
  36. }

//使用 IExcel2003Import 去调用 createExcel 方法
byte[] data = createExcel(excel2003Import);

//使用 IExcel2007Import 去调用 createExcel 方法
byte[] data = createExcel(excel2007Import);

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号