Package com.github.junrar.io

Examples of com.github.junrar.io.IReadOnlyAccess


    this.file = file;
  }

  @Override
  public IReadOnlyAccess getReadOnlyAccess() throws IOException {
    IReadOnlyAccess input = null;
    try {
      RandomAccessContent rac = file.getContent().getRandomAccessContent(
          RandomAccessMode.READ);
      input = new RandomAccessContentAccess(rac);
    } catch (Exception e) {
View Full Code Here

TOP

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

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.