Skip to main content

Installation

Compatibility Information

The following table lists the minimum Java language version requirements for each version of the FastExcel library:

VersionJDK Version Support RangeNotes
1.2.xJDK8 - JDK21
1.1.xJDK8 - JDK21
1.0.xJDK8 - JDK21

We strongly recommend using the latest version of FastExcel, as performance optimizations, bug fixes, and new features in the latest version will enhance your experience.

Currently, FastExcel uses POI as its underlying package. If your project already includes POI-related components, you will need to manually exclude POI-related jar files.

Version Update

For detailed update logs, refer to Details of version updates. You can also find all available versions in the Maven Central Repository.

Maven

If you are using Maven for project building, add the following configuration in the pom.xml file:


<dependency>
<groupId>cn.idev.excel</groupId>
<artifactId>fastexcel</artifactId>
<version>version</version>
</dependency>

Gradle

If you are using Gradle for project building, add the following configuration in the build.gradle file:

dependencies {
implementation 'cn.idev.excel:fastexcel:version'
}