1 Star 0 Fork 1

/ POI_EasyExcel

forked from Howin/ POI_EasyExcel 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.55 KB
一键复制 编辑 原始数据 按行查看 历史
Howin 提交于 2021-07-24 20:39 . POI和EasyExcel
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.demo.POI_EasyExcel</groupId>
<artifactId>POI_EasyExcel</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<!--
03版本和07版本的Excel的区别,
容量:03版本最多有65535行数据
文件后缀:03的后缀为xls,而07的为.xlsx
注意:使用时候注意POI 03和07版本最好是相同的,否则会出现版本依赖问题.这里统一使用3.9版本
-->
<!--03版本的EXcel支持-->
<!--<dependency>-->
<!--<groupId>org.apache.poi</groupId>-->
<!--<artifactId>poi</artifactId>-->
<!--<version>3.9</version>-->
<!--</dependency>-->
<!--07版本的excel支持-->
<!--<dependency>-->
<!--<groupId>org.apache.poi</groupId>-->
<!--<artifactId>poi-ooxml</artifactId>-->
<!--<version>3.9</version>-->
<!--</dependency>-->
<!--日期格式化工具-->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.10.5</version>
</dependency>
<!--测试工具-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!--easyexcel-->
<!--由于easyexcel依赖中包含POI相关依赖,有可能发生冲突,所以注释掉-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version >2.2.0-beta2</version>
</dependency>
<!--fastjson-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version >1.2.62</version>
</dependency>
<!--lombok-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version >1.18.12</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>RELEASE</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/selfhigh/poi_-easy-excel.git
git@gitee.com:selfhigh/poi_-easy-excel.git
selfhigh
poi_-easy-excel
POI_EasyExcel
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385