EasyExcel 学习之 导出 “类型及精度问题”
目录
- 现象
- 缘由
- 类型问题
- 精度/格式问题
- 精度问题
- 格式问题
- 解决
现象
Excel 导出时,可能面临几个问题:
- 类型问题:常见类型转换、URL 转图片等
- 精度/格式问题:数字、日期转换
缘由
类型问题
Excel 常见的 API 有两种,Easy Excel 使用的是 Apache POI 。Excel 定义的单元格数据类型远远没有 Java 等语言的数据类型多,且数据导出时呈现方式可能与源数据不一致。故而,导出中存在数据类型转换。
精度/格式问题
精度问题
- 保留几位小数、具体保留规则
- 科学计数法:通过 Converter 转成 String 输出
格式问题
- 日期
解决
- 数字:
@NumberFormat("#.##%")
、LocalDateStringConverter.class
- 日期:
@DateTimeFormat("yyyy年MM月dd日HH时mm分ss秒")
package com.zxguan.monolithtemplate.common.service;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.format.DateTimeFormat;
import com.alibaba.excel.annotation.format.NumberFormat;
import com.alibaba.excel.converters.localdate.LocalDateStringConverter;
import lombok.AllArgsConstructor;
import lombok.Data;
import java.math.BigDecimal;
import java.time.LocalDate;
@AllArgsConstructor
@Data
public class TestRespDTO {
@ExcelProperty(value = "姓名", index = 1)
private String name;
@ExcelProperty(value = "年龄", index = 2)
private Integer age;
@DateTimeFormat("yyyy-MM-dd")
@ExcelProperty(value = "出生年月日", index = 3, converter = LocalDateStringConverter.class)
private LocalDate birthDt;
@NumberFormat("#.##")
@ExcelProperty(value = "资产", index = 4)
private BigDecimal assets;
}