Package com.github.junrar.io

Examples of com.github.junrar.io.ReadOnlyAccessInputStream


  }

  public void init(FileHeader hd) throws IOException {
    long startPos = hd.getPositionInFile() + hd.getHeaderSize();
    unpPackedSize = hd.getFullPackSize();
    inputStream = new ReadOnlyAccessInputStream(archive.getRof(), startPos,
        startPos + unpPackedSize);
    subHead = hd;
    curUnpRead = 0;
    curPackWrite = 0;
    packedCRC = 0xFFffFFff;
View Full Code Here

TOP

Related Classes of com.github.junrar.io.ReadOnlyAccessInputStream

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.