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

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

Introduction

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

The text is from its open source code.

Constructor

SevenZOutputFile(final File filename)
Opens file to write a 7z archive to.
SevenZOutputFile(final SeekableByteChannel channel)
Prepares channel to write a 7z archive to.

Method

voidclose()
Closes the archive, calling #finish if necessary.
voidcloseArchiveEntry()
Closes the archive entry.
SevenZArchiveEntrycreateArchiveEntry(final File inputFile, final String entryName)
Create an archive entry using the inputFile and entryName provided.
voidfinish()
Finishes the addition of entries to this archive, without closing it.
voidputArchiveEntry(final ArchiveEntry archiveEntry)
Records an archive entry to add.
voidwrite(final int b)
Writes a byte to the current archive entry.
voidwrite(final byte[] b)
Writes a byte array to the current archive entry.
voidwrite(final byte[] b, final int off, final int len)
Writes part of a byte array to the current archive entry.