| java.lang.Object org.apache.poi.ddf.EscherDump
EscherDump | public class EscherDump (Code) | | Used to dump the contents of escher records to a PrintStream.
author: Glen Stampoultzis (glens at apache.org) |
Method Summary | |
public void | dump(byte[] data, int offset, int size, PrintStream out) Decodes the escher stream from a byte array and dumps the results to
a print stream. | public void | dump(int recordSize, byte[] data, PrintStream out) | public void | dumpOld(long maxLength, InputStream in, PrintStream out) This version of dump is a translation from the open office escher dump routine. | public static void | main(String[] args) A simple test stub. |
EscherDump | public EscherDump()(Code) | | |
dump | public void dump(byte[] data, int offset, int size, PrintStream out) throws IOException, LittleEndian.BufferUnderrunException(Code) | | Decodes the escher stream from a byte array and dumps the results to
a print stream.
Parameters: data - The data array containing the escher records. Parameters: offset - The starting offset within the data array. Parameters: size - The number of bytes to read. Parameters: out - The output stream to write the results to. |
|
|