| java.lang.Object org.apache.poi.hslf.dev.PPTXMLDump
PPTXMLDump | public class PPTXMLDump (Code) | | Utility class which dumps raw contents of a ppt file into XML format
author: Yegor Kozlov |
Method Summary | |
public void | dump(Writer out) | public void | dump(byte[] data, int offset, int length, int padding) | public void | dumpPictures(byte[] data, int padding) Dumps the Pictures OLE stream into XML. | public static void | main(String[] args) |
HEADER_SIZE | final public static int HEADER_SIZE(Code) | | |
PICTURES_ENTRY | final public static String PICTURES_ENTRY(Code) | | |
PICT_HEADER_SIZE | final public static int PICT_HEADER_SIZE(Code) | | |
docstream | protected byte[] docstream(Code) | | |
hexHeader | protected boolean hexHeader(Code) | | |
pictstream | protected byte[] pictstream(Code) | | |
dump | public void dump(byte[] data, int offset, int length, int padding) throws IOException(Code) | | Dump a part of the document stream into XML
Parameters: data - PPT binary data Parameters: offset - offset from the beginning of the document Parameters: length - of the document Parameters: padding - used for formatting results throws: java.io.IOException - |
dumpPictures | public void dumpPictures(byte[] data, int padding) throws IOException(Code) | | Dumps the Pictures OLE stream into XML.
Parameters: data - from the Pictures OLE data stream Parameters: padding - throws: java.io.IOException - |
|
|