MVN

com.mdazad.chunkysax : excel-chunky-sax

Maven & Gradle

Nov 11, 2023
0 stars

ExcelChunkySAX · The ExcelChunkySAX library provides a way to process large Excel files in chunks using a SAX parser. It reads the Excel file in chunks and performs the specified action on each chunk. The library provides an interface ChunkAction that needs to be implemented to define the action to be performed on each chunk. The library uses Apache POI library to read the Excel file and SAX parser to parse the XML data. Note: any type of date format should be converted to yyyy-MM-dd.

<dependency>
    <groupId>com.mdazad.chunkysax</groupId>
    <artifactId>excel-chunky-sax</artifactId>
    <version>1.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.mdazad.chunkysax : excel-chunky-sax to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of com.mdazad.chunkysax : excel-chunky-sax to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
excel-chunky-sax-1.0.0

How to add a dependency to Maven

Add the following com.mdazad.chunkysax : excel-chunky-sax maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.mdazad.chunkysax</groupId>
    <artifactId>excel-chunky-sax</artifactId>
    <version>1.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.mdazad.chunkysax : excel-chunky-sax gradle dependency to your build.gradle file:

implementation 'com.mdazad.chunkysax:excel-chunky-sax:1.0.0'

Gradle Kotlin DSL: Add the following com.mdazad.chunkysax : excel-chunky-sax gradle kotlin dependency to your build.gradle.kts file:

implementation("com.mdazad.chunkysax:excel-chunky-sax:1.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.mdazad.chunkysax : excel-chunky-sax sbt scala dependency to your build.sbt file:

libraryDependencies += "com.mdazad.chunkysax" % "excel-chunky-sax" % "1.0.0"