Package de.innosystec.unrar.rarfile

Examples of de.innosystec.unrar.rarfile.CommentHeader


      case CommHeader:
    int commHeaderSize = 0;
    toRead = CommentHeader.commentHeaderSize;
    byte[] commBuff = new byte[toRead];
    commHeaderSize = rof.readFully(commBuff, toRead);
    CommentHeader commHead = new CommentHeader(block, commBuff);
    headers.add(commHead);
    // logger.info("method: "+commHead.getUnpMethod()+"; 0x"+
    // Integer.toHexString(commHead.getUnpMethod()));
    newpos = commHead.getPositionInFile()
      + commHead.getHeaderSize();
    rof.setPosition(newpos);

    break;
      case EndArcHeader:
View Full Code Here

TOP

Related Classes of de.innosystec.unrar.rarfile.CommentHeader

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.