easyExcel excel导入导出
程序员文章站
2022-03-15 16:31:49
...
使用EasyExcel 导入导出Excel
能够实现「导入/导出 Excel」的第三方常用类库有 Apache poi、Java Excel(JXL)和阿里巴巴开源的 Easyexcel 等等。
github地址:https://github.com/alibaba/easyexcel
1.EasyExcel所需要的jar包
easyexcel本身就是在
poi
技术基础上修改的,easyexcel本身所依赖的jar包也需要导入工程中。
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>2.0.5</version>
</dependency>