Example usage for org.apache.commons.compress.archivers.sevenz SevenZFile SevenZFile

List of usage examples for org.apache.commons.compress.archivers.sevenz SevenZFile SevenZFile

Introduction

In this page you can find the example usage for org.apache.commons.compress.archivers.sevenz SevenZFile SevenZFile.

Prototype

public SevenZFile(final SeekableByteChannel channel, final byte[] password) throws IOException 

Source Link

Document

Reads a SeekableByteChannel as 7z archive

org.apache.commons.compress.utils.SeekableInMemoryByteChannel allows you to read from an in-memory archive.

Usage

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);
}