Package de.innosystec.unrar.io

Examples of de.innosystec.unrar.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;
View Full Code Here

TOP

Related Classes of de.innosystec.unrar.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.