Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which release of Apache POI runs with Java 1.6?

How can I find out which release of Apache POI runs with Java 1.6? I need to write ppt files with it so the poi-ooxml jar file should be capable of running with it.

like image 540
Patrick Kwinten Avatar asked Nov 01 '25 00:11

Patrick Kwinten


2 Answers

According to this link poi 3.11 needs JDK 1.6 or higher. Latest release of poi is 3.15 which is a minor release and should be compatible with JDK 1.6

like image 130
Knu8 Avatar answered Nov 03 '25 13:11

Knu8


Note: Above links are not working. Please use the following link

Based on Apache POI Apache Poi How to Build

JDK Version POI 4.0 and later require JDK version 1.8 or later.

POI 3.11 and later 3.x versions require JDK version 1.6 or later.

POI 3.5 to 3.10 required the JDK version 1.5 or later. Versions prior to 3.5 required JDK 1.4+.

like image 33
Mat Avatar answered Nov 03 '25 13:11

Mat