Class SevenZipArchiveInputStream
- java.lang.Object
-
- java.io.InputStream
-
- org.apache.commons.compress.archivers.ArchiveInputStream
-
- io.freefair.gradle.plugins.compress.internal.SevenZipArchiveInputStream
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
public class SevenZipArchiveInputStream extends ArchiveInputStream
-
-
Constructor Summary
Constructors Constructor Description SevenZipArchiveInputStream(SevenZFile sevenZFile)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
ArchiveEntry
getNextEntry()
int
read()
int
read(byte[] b)
int
read(byte[] b, int off, int len)
-
Methods inherited from class org.apache.commons.compress.archivers.ArchiveInputStream
canReadEntryData, count, count, getBytesRead, getCount, pushedBackBytes
-
Methods inherited from class java.io.InputStream
available, mark, markSupported, nullInputStream, readAllBytes, readNBytes, readNBytes, reset, skip, transferTo
-
-
-
-
Constructor Detail
-
SevenZipArchiveInputStream
public SevenZipArchiveInputStream(SevenZFile sevenZFile)
-
-
Method Detail
-
getNextEntry
public ArchiveEntry getNextEntry() throws IOException
- Specified by:
getNextEntry
in classArchiveInputStream
- Throws:
IOException
-
read
public int read() throws IOException
- Overrides:
read
in classArchiveInputStream
- Throws:
IOException
-
read
public int read(byte[] b) throws IOException
- Overrides:
read
in classInputStream
- Throws:
IOException
-
read
public int read(byte[] b, int off, int len) throws IOException
- Overrides:
read
in classInputStream
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
-
-