2018-03-05
poi-版本
图表报表 评论:0 浏览:115

转载请注明出处:https://oldnoop.tech/c/136.html

poi-contrib的版本最高为3.6(Dec 15, 2009)

apache poi是经常用来解析或者生成excel的开源框架

一般会用到如下几个框架

poi
poi-ooxml
poi-ooxml-schemas
poi-scratchpad
poi-excelant
poi-contrib

前5个版本都已经到了3.17版本

最后一个poi-contrib到了3.6版本

在使用maven的时候,一般使用一个变量{poi.version}表示需要的poi各个jar包的版本

比如:

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>{poi.version}</version>
</dependency>

这时候要注意,poi-contrib的版本最高版本为3.6

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-contrib</artifactId>
<version>3.6</version>
</dependency>



  • 转载请注明出处:https://oldnoop.tech/c/136.html

Copyright © 2018 oldnoop.tech. All Rights Reserved

鄂ICP备2023022735号-1