views:

228

answers:

1

I need to convert powerpoint file to a text based file such as xml o html programatically and do some proccesses in it and again convert the textbased file top powerpoint. I prefer to do it with java.

+1  A: 

Take a look at this: POI and specifically POI-HSLF

You need to read the ppt and extract the contents and form your xml doc. Post manipulation you need to create back the ppt.

Nrj