Java org.apache.commons.compress.archivers ArchiveInputStream fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.compress.archivers ArchiveInputStream fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.compress.archivers ArchiveInputStream.

The text is from its open source code.

Subclass

org.apache.commons.compress.archivers.ArchiveInputStream has subclasses.
Click this link to see all its subclasses.

Method

booleancanReadEntryData(ArchiveEntry ae)
Whether this stream is able to read the given entry.
voidclose()
Closes this input stream and releases any system resources associated with the stream.
longgetBytesRead()
Returns the current number of bytes read from this stream.
ClassgetClass()
Returns the runtime class of this Object .
ArchiveEntrygetNextEntry()
Returns the next Archive Entry in this Stream.
intread(byte b[])
Reads some number of bytes from the input stream and stores them into the buffer array b.
intread()
Reads a byte of data.
intread(byte b[], int off, int len)
Reads up to len bytes of data from the input stream into an array of bytes.