Skip to content Skip to sidebar Skip to footer

How To Read Xlsx File In An Android Application?

I know there's many same questions on stackoverflow, but it seems that I can't see any possible solution for reading the content of xlsx. What I have try: I have try to put the who

Solution 1:

Apache POI 3.5 have added support to all the OOXML (docx, xlsx, etc.)

See the XSSF sub project

Solution 2:

Just committed XSSF Android usage demo on github:

https://github.com/andruhon/AndroidReadXLSX

The core idea is just to remove from poi-ooxml and poi-ooxml-schemas all files which are seems to be not necessary to read XLSX. For example xslf and xwpf from poi-ooxml, schemas presentationml and wordrpocessingml from poi-ooxml-schemas and other stuff...

After that, build your project and try to read XLSX, read log after that fails and see which dependency caused this fail, copy missed file from original poi-ooxml-schemas jar. Do it again and again unless it is working.

UPD: no more need in --core-library option!http://blog.kondratev.pro/2014/09/reading-xlsx-on-android-3.html

Demo mentioned above already contains reduced poi-ooxml and poi-ooxml-schemas.

Post a Comment for "How To Read Xlsx File In An Android Application?"