| java.lang.Object org.apache.poi.hdgf.streams.StreamStore org.apache.poi.hdgf.streams.CompressedStreamStore
CompressedStreamStore | public class CompressedStreamStore extends StreamStore (Code) | | A StreamStore where the data on-disk is compressed,
using the crazy Visio LZW
|
Constructor Summary | |
protected | CompressedStreamStore(byte[] data, int offset, int length) Creates a new compressed StreamStore, which will handle
the decompression. |
CompressedStreamStore | protected CompressedStreamStore(byte[] data, int offset, int length) throws IOException(Code) | | Creates a new compressed StreamStore, which will handle
the decompression.
|
_getBlockHeader | protected byte[] _getBlockHeader()(Code) | | |
_getCompressedContents | protected byte[] _getCompressedContents()(Code) | | |
copyBlockHeaderToContents | protected void copyBlockHeaderToContents()(Code) | | Some kinds of streams expect their 4 byte header to be
on the front of the contents.
They can call this to have it sorted.
|
decompress | public static byte[][] decompress(byte[] data, int offset, int length) throws IOException(Code) | | Decompresses the given data, returning it as header + contents
|
|
|