Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

Provide me some tutorial links about this

Please explain about this

like image 917
SAR Avatar asked Jan 12 '23 08:01

SAR


1 Answers

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

like image 73
Rahul Chauhan Avatar answered Jan 20 '23 10:01

Rahul Chauhan