Java org.apache.commons.compress.tar TarOutputStream fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Constructor

TarOutputStream(final OutputStream output)
Construct a TarOutputStream using specified input stream and default block and record sizes.

Method

voidclose()
Ends the TAR archive and closes the underlying OutputStream.
voidcloseEntry()
Close an entry.
voidcopyEntryContents(final InputStream input)
Copies the contents of the specified stream into current tar archive entry.
voidfinish()
Ends the TAR archive without closing the underlying OutputStream.
voidputNextEntry(final TarEntry entry)
Put an entry on the output stream.
voidwrite(final int data)
Writes a byte to the current tar archive entry.
voidwrite(final byte[] buffer)
Writes bytes to the current tar archive entry.