Class SevenZipArchiveInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- org.apache.commons.compress.archivers.ArchiveInputStream
-
- io.freefair.gradle.plugins.compress.internal.SevenZipArchiveInputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class SevenZipArchiveInputStream extends org.apache.commons.compress.archivers.ArchiveInputStream
-
-
Constructor Summary
Constructors Constructor Description SevenZipArchiveInputStream(org.apache.commons.compress.archivers.sevenz.SevenZFile sevenZFile)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()org.apache.commons.compress.archivers.ArchiveEntrygetNextEntry()intread()intread(byte[] b)intread(byte[] b, int off, int len)-
Methods inherited from class org.apache.commons.compress.archivers.ArchiveInputStream
canReadEntryData, count, count, forEach, getBytesRead, getCharset, getCount, iterator, mark, markSupported, pushedBackBytes, reset
-
-
-
-
Method Detail
-
getNextEntry
public org.apache.commons.compress.archivers.ArchiveEntry getNextEntry() throws java.io.IOException- Specified by:
getNextEntryin classorg.apache.commons.compress.archivers.ArchiveInputStream- Throws:
java.io.IOException
-
read
public int read() throws java.io.IOException- Overrides:
readin classorg.apache.commons.compress.archivers.ArchiveInputStream- Throws:
java.io.IOException
-
read
public int read(byte[] b) throws java.io.IOException- Overrides:
readin classjava.io.FilterInputStream- Throws:
java.io.IOException
-
read
public int read(byte[] b, int off, int len) throws java.io.IOException- Overrides:
readin classjava.io.FilterInputStream- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.FilterInputStream- Throws:
java.io.IOException
-
-