260261262263264265266
* @param length The amount to extract * * @return The extracted bytes as a stream */ public static InputStream subStream(InputStream inputStream, long start, int length) { return new BinaryStreamImpl( extractBytes( inputStream, start, length ) ); }
53545556575859
* * @param bytes The byte array * @see #generateProxy(byte[]) */ private BlobProxy(byte[] bytes) { binaryStream = new BinaryStreamImpl( bytes ); }