Package org.apache.poi.hslf.dev
Class PPTXMLDump
- java.lang.Object
-
- org.apache.poi.hslf.dev.PPTXMLDump
-
public final class PPTXMLDump extends Object
Utility class which dumps raw contents of a ppt file into XML format
-
-
Constructor Summary
Constructors Constructor Description PPTXMLDump(File ppt)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dump(byte[] data, int offset, int length, int padding)
Dump a part of the document stream into XMLvoid
dump(Writer outWriter)
Dump the structure of the supplied PPT file into XMLvoid
dumpPictures(byte[] data, int padding)
Dumps the Pictures OLE stream into XML.static void
main(String[] args)
-
-
-
Constructor Detail
-
PPTXMLDump
public PPTXMLDump(File ppt) throws IOException
- Throws:
IOException
-
-
Method Detail
-
dump
public void dump(Writer outWriter) throws IOException
Dump the structure of the supplied PPT file into XML- Parameters:
outWriter
-Writer
to write out- Throws:
IOException
-
dump
public void dump(byte[] data, int offset, int length, int padding) throws IOException
Dump a part of the document stream into XML- Parameters:
data
- PPT binary dataoffset
- offset from the beginning of the documentlength
- of the documentpadding
- used for formatting results- Throws:
IOException
-
dumpPictures
public void dumpPictures(byte[] data, int padding) throws IOException
Dumps the Pictures OLE stream into XML.- Parameters:
data
- from the Pictures OLE data streampadding
-- Throws:
IOException
-
-