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 voiddump(byte[] data, int offset, int length, int padding)Dump a part of the document stream into XMLvoiddump(Writer outWriter)Dump the structure of the supplied PPT file into XMLvoiddumpPictures(byte[] data, int padding)Dumps the Pictures OLE stream into XML.static voidmain(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-Writerto write out- Throws:
IOException
-
dump
public void dump(byte[] data, int offset, int length, int padding) throws IOExceptionDump 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 IOExceptionDumps the Pictures OLE stream into XML.- Parameters:
data- from the Pictures OLE data streampadding-- Throws:
IOException
-
-