How To Read Xlsx File In An Android Application?
Solution 1:
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?"