Package com.shop.util.chunked

Examples of com.shop.util.chunked.ChunkedByteArrayInputStream


  public SCDataBlock     deserialize(ChunkedByteArray bytes) throws Exception
  {
    SCDataBlock            block = new SCDataBlock();
    block.data(bytes);

    ObjectInputStream         in = new ObjectInputStream(new GZIPInputStream(new ChunkedByteArrayInputStream(bytes)));

    int      fileVersion = in.readInt();
    if ( fileVersion != FILE_VERSION )
    {
      throw new DeserializeFailure("Incorrect File Version: " + fileVersion);
View Full Code Here

TOP

Related Classes of com.shop.util.chunked.ChunkedByteArrayInputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.