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

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

Introduction

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

The text is from its open source code.

Constructor

Method

voidclose()
Closes this output stream and releases any system resources associated with this stream.
voidcloseArchiveEntry()
Closes the archive entry, writing any trailer information that may be required.
ArchiveEntrycreateArchiveEntry(File inputFile, String entryName)
Create an archive entry using the inputFile and entryName provided.
voidfinish()
Finishes the addition of entries to this stream, without closing it.
voidflush()
Flushes this output stream and forces any buffered output bytes to be written out.
longgetBytesWritten()
Returns the current number of bytes written to this stream.
ClassgetClass()
Returns the runtime class of this Object .
voidputArchiveEntry(ArchiveEntry entry)
Writes the headers for an archive entry to the output stream.
voidwrite(int b)
Writes a byte to the current archive entry.
voidwrite(byte b[], int off, int len)
Writes len bytes from the specified byte array starting at offset off to this output stream.