Package org.apache.poi.ddf
Class EscherDump
- java.lang.Object
-
- org.apache.poi.ddf.EscherDump
-
public final class EscherDump extends Object
Used to dump the contents of escher records to a PrintStream.
-
-
Constructor Summary
Constructors Constructor Description EscherDump()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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.void
dump(int recordSize, byte[] data, PrintStream out)
-
-
-
Method Detail
-
dump
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.- Parameters:
data
- The data array containing the escher records.offset
- The starting offset within the data array.size
- The number of bytes to read.out
- The output stream to write the results to.
-
dump
public void dump(int recordSize, byte[] data, PrintStream out)
-
-