Skip to content

Releases: monitorjbl/excel-streaming-reader

v0.2.1

23 Apr 20:38
Compare
Choose a tag to compare
v0.2.1 Pre-release
Pre-release

Second experimental release. Basic support for iterating through rows and cells. Supported access methods:

Cell

  • getColumnIndex()
  • getRowIndex()
  • getRow()
  • getCellType()
  • getStringCellValue()
  • getNumericCellValue()
  • getDateCellValue()

Row

  • getRowNum()
  • getCell()
  • cellIterator()
  • iterator()

To install library manually, using Maven:

cd /path/to/download/dir
mvn org.apache.maven.plugins:maven-install-plugin:2.5.1:install-file -Dfile=xlsx-streamer-0.2.1.jar

v0.1

21 Apr 01:20
Compare
Choose a tag to compare
v0.1 Pre-release
Pre-release

First experimental release. Basic support for iterating through rows and cells. Supported access methods:

Cell

  • getColumnIndex()
  • getRowIndex()
  • getRow()
  • getCellType()
  • getStringCellValue()
  • getNumericCellValue()
  • getDateCellValue()

Row

  • getRowNum()
  • cellIterator()
  • iterator()

To install library manually, using Maven:

cd /path/to/download/dir
mvn org.apache.maven.plugins:maven-install-plugin:2.5.1:install-file -Dfile=xlsx-streamer-0.1.jar