easyExcel 使用指南详解

目录

概述

EasyExcel控制表格注解

Excel导出

依赖:

创建Excel实体类对象:

控制器方法:

AnalysisEventListener实现类(invoke方法实现解析后从接收类转为实体类并保存在数据库中):


概述

         EasyExcel是一个基于Java的简单、省内存的读写Excel的开源项目(一行一行放入内存中)。在尽可能节约内存的情况下支持读写百M的Excel。

EasyExcel控制表格注解

@ContentRowHeight(int):设置 row 高度,不包含表头,标记在类上

@HeadRowHeight(int):设置 表头 高度(与 @ContentRowHeight 相反) ,标记在类上

@ColumnWidth(int):设置列宽 标记在属性上

@ExcelProperty(value = String[], index = int):设置表头信息 value: 表名称 index: 列号

Excel导出

依赖:


    org.apache.commons
    commons-lang3
    3.9



    com.alibaba
    easyexcel
    3.1.1

创建Excel实体类对象:

@ColumnWidth(15)
public class CustomerRow {



    @ExcelProperty("用户编码")
    private String code;

    @ExcelProperty("用户卡号")
    private String yhkh;

    @ExcelProperty("用户名称")
    private String name;

    @ExcelProperty("身份证号")
    private String idNumber;
}

控制器方法:

@RestController
public class ExcelController {
    @Autowired
    private CustomerService customerService;
    @Transactional
    @PostMapping("/excel")
    public String importCustomer(MultipartFile file, HttpServletRequest request) {
        if(file == null){
            throw new RuntimeException("未上传文件");
        }
        try {
            CustomerListener listener = new CustomerListener(customerService);
            EasyExcel.read(file.getInputStream(), CustomerRow.class, listener).sheet().doRead();
        }catch (Exception e) {
            throw new RuntimeException(e);
        }
      
        return "上传成功";
    }
}

AnalysisEventListener实现类(invoke方法实现解析后从接收类转为实体类并保存在数据库中):

package com.example.excelstudy.Listener;

import com.alibaba.excel.context.AnalysisContext;
import com.alibaba.excel.event.AnalysisEventListener;
import com.example.excelstudy.bean.Customer;

import com.example.excelstudy.bean.CustomerRow;
import com.example.excelstudy.service.CustomerService;


import java.util.Random;


/**
 * @author : Administrator
 * @version : V1.0.0
 * @className : CustomerListener
 * @description : 该类功能  TODO
 * @createTime : 2022-11-15
 */
public class CustomerListener extends AnalysisEventListener{
    private CustomerService  customerService;
    
    public CustomerListener (CustomerService service){
        customerService=service;
    }
    @Override
    public void invoke(CustomerRow customer, AnalysisContext analysisContext) {
            Random random = new Random();
            long l = random.nextLong();
            // 数据结构转换
            Customer source = this.parseCustomer(customer);
            source.setId(l);
            customerService.addSave(source);
    }

    @Override
    public void doAfterAllAnalysed(AnalysisContext analysisContext) {

    }
    /**
     * 将行数据转换成对应的用户对象
     * @param row 行数据
     * @return
     */
    private Customer parseCustomer(CustomerRow row) {
        Customer customer = new Customer();

       
        // 自动生成用户编码
        customer.setCode(row.getCode());
        customer.setYhkh(row.getYhkh());
        customer.setName(row.getName());
        customer.setIdNumber(row.getIdNumber());
        
        return customer;
    }
}

日志文件:




    
    

    
    
        
            
            %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n
        
    

    
    
        
            
            ${LOG_HOME}/%d{yyyy-MM-dd}_%i.log
            
            20MB
            
            90
        
        
            
            %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n
        
        
        
    

    
    
    
    
    
    
    
    
    
    
        
        
    

你可能感兴趣的:(excel,java,maven,spring)