Apache POI with Android -- How to Create ,Read , Write, Delete PowerPoint Presentations?

19,975

Solution 1

Apache POI is very heavy library and it is almost impossible to directly use this library in android for multiple document types like .doc , .docx , .xlsx etc becuase of Methods size. Methods size is greater then 65k. But you can use it by removing classes from jars which are not required by you and it requires too much time and testing. I can suggest you to use Docx4j but is does not support .doc file. Method limit is also very close to 65k in docx4j also.

If you are beginner you can start by creating simple .doc file using Apache Poi here

http://apache-poi.1045710.n5.nabble.com/Creating-new-word-doc-with-POI-td2289680.html

Solution 2

http://viralpatel.net/blogs/java-read-write-excel-file-apache-poi/comment-page-1/ http://poi.apache.org/poifs/how-to.html

try above link.i hope its useful to you.

Solution 3

JPresentation works on Android and does not have method size issue.

Hope it will help.

Share:
19,975
Aravind
Author by

Aravind

Updated on June 17, 2022

Comments

  • Aravind
    Aravind about 2 years

    I have to Put Apache POI API with android is it possible

    Provide me some tutorial links about this
    

    Please explain about this