SpringBoot集成Easyexcel-导出

1.创建一个SpringBoot项目(SpringBoot生成

2.导入依赖(在pom中导入)

 	<!-- poi -->
    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi</artifactId>
        <version>3.17</version>
    </dependency>
    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi-ooxml</artifactId>
        <version>3.17</version>
    </dependency>
    
    <!-- easyexcel -->
    <dependency>
        <groupId>com.alibaba</groupId>
        <artifactId>easyexcel</artifactId>
        <version>2.1.1</version>
    </dependency>

3.创建一个实体类(User)

package com.huyi.easyexcel.pojo;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;

/**
 * @HeadRowHeight(int):设置表头高度(与 @ContentRowHeight 相反)标记在类上
 * @ColumnWidth(int):设置列宽标记在属性上
 * @ExcelProperty("String") 是标题
 * @ColumnWidth(value = 20) 宽度 value:宽度大小   
 * @ContentRowHeight(int):设置 row 高度,不包含表头标记在 类上
 */

public class User {
	
	
	@ExcelProperty(value ="用户ID",index = 0)
	private Long userId;
	@ExcelProperty(value ="用户名",index = 1)
	private String userName;
	@ExcelProperty(value ="用户密码",index = 2)
	private String passWord;
	@ExcelProperty(value ="用户邮箱",index = 3)
	private String email;
	
	
	public Long getUserId() {
		return userId;
	}
	public void setUserId(Long userId) {
		this.userId = userId;
	}
	public String getUserName() {
		return userName;
	}
	public void setUserName(String userName) {
		this.userName = userName;
	}
	public String getPassWord() {
		return passWord;
	}
	public void setPassWord(String passWord) {
		this.passWord = passWord;
	}
	public String getEmail() {
		return email;
	}
	public void setEmail(String email) {
		this.email = email;
	}
	public User(Long userId, String userName, String passWord, String email) {
		this.userId = userId;
		this.userName = userName;
		this.passWord = passWord;
		this.email = email;
	}
	public User() {
		
	}
	
}

4.创建一个监听器继承AnalysisEventListener

package com.huyi.easyexcel.listenter;

import java.util.Map;
import com.alibaba.excel.context.AnalysisContext;
import com.alibaba.excel.event.AnalysisEventListener;
import com.huyi.easyexcel.pojo.User;

public class ReadListenter extends AnalysisEventListener<User>{
	
	/**
     * 读取表头
     *
     * @param Map<Integer, String>  表头内容
     * @param AnalysisContext 读取合并单元格
     */
    public void invokeHeadMap(Map<Integer, String> headMap, AnalysisContext context) {
        System.err.println(headMap);
    }
    
    /**
     * 一行一行的读取
     * @param User  实体类
     * @param AnalysisContext 读取合并单元格
     */
	@Override
	public void invoke(User data, AnalysisContext context) {
		// TODO Auto-generated method stub
		System.err.println(data.getUserId()+""+data.getUserName()+""+data.getPassWord()+""+data.getEmail());
		
	}

	/**
     * 读取完成后要做的事
     * @param AnalysisContext 读取合并单元格
     */
	@Override
	public void doAfterAllAnalysed(AnalysisContext context) {
		// TODO Auto-generated method stub
		
	}

}

5.在项目的test中测试

package com.huyi.easyexcel;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import com.alibaba.excel.EasyExcel;
import com.huyi.easyexcel.listenter.ReadListenter;
import com.huyi.easyexcel.pojo.User;

@SpringBootTest
class EasyexcelApplicationTests {

	@Test
	void testRead(){
		 // 读取excel的位置
        String fileName = "E:\\test.xlsx";
        
        /**
         *  fileName   读取excel的位置
         *  User.class   实体类
         *  new ExcelListenter()   监听器
         */
        EasyExcel.read(fileName, User.class,new ReadListenter()).sheet().doRead();
	}
	
}


  • 注意:文件如果打开的话运行会报错

6.运行结果如下

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小狐狸崽子OvO

你的鼓励将是我创造最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值