当前位置:   article > 正文

使用easypoi模板方法导出excel_easypoi导出excel模板

easypoi导出excel模板

系列文章目录

一、Java使用Apache POI导出excel
二、Apache POI 操作Excel常用方法
三、Apache poi 拆分单元格并赋值
四、使用easypoi模板方法导出excel
五、Apache poi给excel单元格添加下拉框或数据验证



效果图

在这里插入图片描述

一、横向输出

1、创建模板

在这里插入图片描述

2、引入依赖

<dependency>
     <groupId>cn.afterturn</groupId>
     <artifactId>easypoi-spring-boot-starter</artifactId>
     <version>4.3.0</version>
</dependency>
<!-- 建议只用start -->
<dependency>
	<groupId>cn.afterturn</groupId>
	<artifactId>easypoi-base</artifactId>
	<version>4.3.0</version>
</dependency>
<dependency>
	<groupId>cn.afterturn</groupId>
	<artifactId>easypoi-web</artifactId>
	<version>4.3.0</version>
</dependency>
<dependency>
	<groupId>cn.afterturn</groupId>
	<artifactId>easypoi-annotation</artifactId>
	<version>4.3.0</version>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

3、代码

public static void main(String[] args) {
    String s = exportExcel();
    System.out.println(s);
}

public static String exportExcel () {
    // 文件输出路径
    String excelPath = "D:\\桌面\\";

    // 模板导出
    Map<String, Object> map = new HashMap<String, Object>();
    ArrayList<Object> list = new ArrayList<>();
    for (int i = 1; i < 5; i++) {
        HashMap<String, String> lm = new HashMap<>();
        lm.put("name", "姓名" + i);
        lm.put("class", "班级" + i);
        lm.put("age", "年龄" + i);
        list.add(lm);
    }
    map.put("list", list);

    TemplateExportParams params = new TemplateExportParams(
            "./xlsx/test.xlsx");  // 模板路径
    Workbook workbook = ExcelExportUtil.exportExcel(params, map);
    File savefile = new File(excelPath);
    if (!savefile.exists()) {
        savefile.mkdirs();
    }
    String path = excelPath + "测试.xlsx";	// 文件输出路径
    try {
        FileOutputStream fos = new FileOutputStream(path);
        workbook.write(fos);
        fos.close();
        return path;
    } catch (IOException e) {
        e.printStackTrace();
        return null;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39

二、纵向输出

效果图

在这里插入图片描述

1、创建模板

在这里插入图片描述

2、引入依赖

<dependency>
     <groupId>cn.afterturn</groupId>
     <artifactId>easypoi-spring-boot-starter</artifactId>
     <version>4.3.0</version>
</dependency>
<!-- 建议只用start -->
<dependency>
	<groupId>cn.afterturn</groupId>
	<artifactId>easypoi-base</artifactId>
	<version>4.3.0</version>
</dependency>
<dependency>
	<groupId>cn.afterturn</groupId>
	<artifactId>easypoi-web</artifactId>
	<version>4.3.0</version>
</dependency>
<dependency>
	<groupId>cn.afterturn</groupId>
	<artifactId>easypoi-annotation</artifactId>
	<version>4.3.0</version>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

3、代码

public static void main(String[] args) {
    String s = exportExcel();
    System.out.println(s);
}

public static String exportExcel () {
    // 文件输出路径
    String excelPath = "D:\\桌面\\";

    // 模板导出
    Map<String, Object> map = new HashMap<String, Object>();
    ArrayList<Object> list = new ArrayList<>();
    for (int i = 1; i < 5; i++) {
        HashMap<String, String> lm = new HashMap<>();
        lm.put("name", "姓名" + i);
        lm.put("class", "班级" + i);
        lm.put("age", "年龄" + i);
        list.add(lm);
    }
    map.put("list", list);

    TemplateExportParams params = new TemplateExportParams(
            "./xlsx/test.xlsx");  // 模板路径
    params.setColForEach(true);
    Workbook workbook = ExcelExportUtil.exportExcel(params, map);
    File savefile = new File(excelPath);
    if (!savefile.exists()) {
        savefile.mkdirs();
    }
    String path = excelPath + "测试.xlsx";	// 文件输出路径
    try {
        FileOutputStream fos = new FileOutputStream(path);
        workbook.write(fos);
        fos.close();
        return path;
    } catch (IOException e) {
        e.printStackTrace();
        return null;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/540330
推荐阅读
相关标签
  

闽ICP备14008679号