Go to file
Travis Burtrum 2636dde4a8
moparisthebest/poi/pipeline/head This commit looks good Details
Abandon travis-ci for jenkins
2020-11-26 20:12:10 -05:00
.ci Abandon travis-ci for jenkins 2020-11-26 20:12:10 -05:00
legal #60626 - ArrayIndexOutOfBoundsException in EvilUnclosedBRFixingInputStream 2017-02-08 01:01:51 +00:00
src Update readme and pom, add .travis.yml 2019-03-27 01:30:41 -04:00
.gitignore Add basic maven pom.xml and test 2019-03-26 12:22:48 -04:00
README.md Abandon travis-ci for jenkins 2020-11-26 20:12:10 -05:00
pom.xml [maven-release-plugin] prepare for next development iteration 2019-04-23 16:26:59 -04:00

README.md

POI Fast Calc

Build Status

A Java library to calculate Excel formulas quickly.

This is a fork of Apache POI version 3.16 that serves simply to calculate formulas quickly, it supports XLSX (Excel 2007) row/column limits in the HSSF engine for much faster evaluation than XML-backed XSSF is capable of, with the drawback that it can't read or write XLS/XLSX files from or to disk. Read the email thread with my original proposed patch to upstream poi for background.

To use, add this to your maven pom.xml:

<dependency>
  <groupId>com.moparisthebest.poi</groupId>
  <artifactId>poi-fast-calc</artifactId>
  <version>3.16-SNAPSHOT</version>
</dependency>

The org.apache.poi package has been renamed com.moparisthebest.poi and all dependencies removed, so this can cleanly live aside modern/newer upstream poi forever, and shouldn't ever need to change.