List of usage examples for org.apache.commons.compress.archivers.sevenz SevenZFile SevenZFile
public SevenZFile(final SeekableByteChannel channel, final byte[] password) throws IOException
org.apache.commons.compress.utils.SeekableInMemoryByteChannel allows you to read from an in-memory archive.
From source file:com.izforge.izpack.util.compress.SevenZArchiveInputStream.java
@SuppressWarnings("unused") public SevenZArchiveInputStream(final File file, final byte[] password) throws IOException { this.zFile = new SevenZFile(file, password); }