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

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

Introduction

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

The text is from its open source code.

Constructor

CpioArchiveOutputStream(final OutputStream out)
Construct the cpio output stream.
CpioArchiveOutputStream(final OutputStream out, final short format)
Construct the cpio output stream with a specified format and a blocksize of CpioConstants#BLOCK_SIZE BLOCK_SIZE .

Method

voidclose()
Closes the CPIO output stream as well as the stream being filtered.
voidcloseArchiveEntry()
voidfinish()
Finishes writing the contents of the CPIO output stream without closing the underlying stream.
voidflush()
Flushes this output stream and forces any buffered output bytes to be written out.
voidputArchiveEntry(ArchiveEntry entry)
Begins writing a new CPIO file entry and positions the stream to the start of the entry data.
voidwrite(int b)
Writes a byte to the current archive entry.