Package com.github.junrar

Examples of com.github.junrar.UnrarCallback


        FileHeader hd = this.getSubHeader();
        if (hd.getUnpVersion() >= 20 && hd.getFileCRC() != 0xffffffff
            && this.getPackedCRC() != ~hd.getFileCRC()) {
          throw new RarException(RarExceptionType.crcError);
        }
        UnrarCallback callback = archive.getUnrarCallback();
        if ((callback != null)
            && !callback.isNextVolumeReady(nextVolume)) {
          return -1;
        }
        archive.setVolume(nextVolume);
        hd = archive.nextFileHeader();
        if (hd == null) {
View Full Code Here

TOP

Related Classes of com.github.junrar.UnrarCallback

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.