Class SevenZOutputFile
- java.lang.Object
-
- org.apache.commons.compress.archivers.sevenz.SevenZOutputFile
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable
public class SevenZOutputFile extends java.lang.Object implements java.io.CloseableWrites a 7z file.- Since:
- 1.6
-
-
Constructor Summary
Constructors Constructor Description SevenZOutputFile(java.io.File fileName)Opens file to write a 7z archive to.SevenZOutputFile(java.io.File fileName, char[] password)Opens file to write a 7z archive to.SevenZOutputFile(java.nio.channels.SeekableByteChannel channel)Prepares channel to write a 7z archive to.SevenZOutputFile(java.nio.channels.SeekableByteChannel channel, char[] password)Prepares channel to write a 7z archive to.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclose()Closes the archive, callingfinish()if necessary.voidcloseArchiveEntry()Closes the archive entry.SevenZArchiveEntrycreateArchiveEntry(java.io.File inputFile, java.lang.String entryName)Creates an archive entry using the inputFile and entryName provided.SevenZArchiveEntrycreateArchiveEntry(java.nio.file.Path inputPath, java.lang.String entryName, java.nio.file.LinkOption... options)Creates an archive entry using the inputPath and entryName provided.voidfinish()Finishes the addition of entries to this archive, without closing it.voidputArchiveEntry(ArchiveEntry archiveEntry)Deprecated.voidputArchiveEntry(SevenZArchiveEntry archiveEntry)Records an archive entry to add.voidsetContentCompression(SevenZMethod method)Sets the default compression method to use for entry contents - the default is LZMA2.voidsetContentMethods(java.lang.Iterable<? extends SevenZMethodConfiguration> methods)Sets the default (compression) methods to use for entry contents - the default is LZMA2.voidwrite(byte[] b)Writes a byte array to the current archive entry.voidwrite(byte[] b, int off, int len)Writes part of a byte array to the current archive entry.voidwrite(int b)Writes a byte to the current archive entry.voidwrite(java.io.InputStream inputStream)Writes all of the given input stream to the current archive entry.voidwrite(java.nio.file.Path path, java.nio.file.OpenOption... options)Writes all of the given input stream to the current archive entry.
-
-
-
Constructor Detail
-
SevenZOutputFile
public SevenZOutputFile(java.io.File fileName) throws java.io.IOExceptionOpens file to write a 7z archive to.- Parameters:
fileName- the file to write to- Throws:
java.io.IOException- if opening the file fails
-
SevenZOutputFile
public SevenZOutputFile(java.io.File fileName, char[] password) throws java.io.IOExceptionOpens file to write a 7z archive to.- Parameters:
fileName- the file to write topassword- optional password if the archive has to be encrypted- Throws:
java.io.IOException- if opening the file fails- Since:
- 1.23
-
SevenZOutputFile
public SevenZOutputFile(java.nio.channels.SeekableByteChannel channel) throws java.io.IOExceptionPrepares channel to write a 7z archive to.SeekableInMemoryByteChannelallows you to write to an in-memory archive.- Parameters:
channel- the channel to write to- Throws:
java.io.IOException- if the channel cannot be positioned properly- Since:
- 1.13
-
SevenZOutputFile
public SevenZOutputFile(java.nio.channels.SeekableByteChannel channel, char[] password) throws java.io.IOExceptionPrepares channel to write a 7z archive to.SeekableInMemoryByteChannelallows you to write to an in-memory archive.- Parameters:
channel- the channel to write topassword- optional password if the archive has to be encrypted- Throws:
java.io.IOException- if the channel cannot be positioned properly- Since:
- 1.23
-
-
Method Detail
-
close
public void close() throws java.io.IOExceptionCloses the archive, callingfinish()if necessary.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException- on error
-
closeArchiveEntry
public void closeArchiveEntry() throws java.io.IOExceptionCloses the archive entry.- Throws:
java.io.IOException- on error
-
createArchiveEntry
public SevenZArchiveEntry createArchiveEntry(java.io.File inputFile, java.lang.String entryName)
Creates an archive entry using the inputFile and entryName provided.- Parameters:
inputFile- file to create an entry fromentryName- the name to use- Returns:
- the ArchiveEntry set up with details from the file
-
createArchiveEntry
public SevenZArchiveEntry createArchiveEntry(java.nio.file.Path inputPath, java.lang.String entryName, java.nio.file.LinkOption... options) throws java.io.IOException
Creates an archive entry using the inputPath and entryName provided.- Parameters:
inputPath- path to create an entry fromentryName- the name to useoptions- options indicating how symbolic links are handled.- Returns:
- the ArchiveEntry set up with details from the file
- Throws:
java.io.IOException- on error- Since:
- 1.21
-
finish
public void finish() throws java.io.IOExceptionFinishes the addition of entries to this archive, without closing it.- Throws:
java.io.IOException- if archive is already closed.
-
putArchiveEntry
@Deprecated public void putArchiveEntry(ArchiveEntry archiveEntry)
Deprecated.Records an archive entry to add. The caller must then write the content to the archive and callcloseArchiveEntry()to complete the process.- Parameters:
archiveEntry- describes the entry
-
putArchiveEntry
public void putArchiveEntry(SevenZArchiveEntry archiveEntry)
Records an archive entry to add. The caller must then write the content to the archive and callcloseArchiveEntry()to complete the process.- Parameters:
archiveEntry- describes the entry- Since:
- 1.25.0
-
setContentCompression
public void setContentCompression(SevenZMethod method)
Sets the default compression method to use for entry contents - the default is LZMA2.Currently only
SevenZMethod.COPY,SevenZMethod.LZMA2,SevenZMethod.BZIP2andSevenZMethod.DEFLATEare supported.This is a short form for passing a single-element iterable to
setContentMethods(java.lang.Iterable<? extends org.apache.commons.compress.archivers.sevenz.SevenZMethodConfiguration>).- Parameters:
method- the default compression method
-
setContentMethods
public void setContentMethods(java.lang.Iterable<? extends SevenZMethodConfiguration> methods)
Sets the default (compression) methods to use for entry contents - the default is LZMA2.Currently only
SevenZMethod.COPY,SevenZMethod.LZMA2,SevenZMethod.BZIP2andSevenZMethod.DEFLATEare supported.The methods will be consulted in iteration order to create the final output.
- Parameters:
methods- the default (compression) methods- Since:
- 1.8
-
write
public void write(byte[] b) throws java.io.IOExceptionWrites a byte array to the current archive entry.- Parameters:
b- The byte array to be written.- Throws:
java.io.IOException- on error
-
write
public void write(byte[] b, int off, int len) throws java.io.IOExceptionWrites part of a byte array to the current archive entry.- Parameters:
b- The byte array to be written.off- offset into the array to start writing fromlen- number of bytes to write- Throws:
java.io.IOException- on error
-
write
public void write(java.io.InputStream inputStream) throws java.io.IOExceptionWrites all of the given input stream to the current archive entry.- Parameters:
inputStream- the data source.- Throws:
java.io.IOException- if an I/O error occurs.- Since:
- 1.21
-
write
public void write(int b) throws java.io.IOExceptionWrites a byte to the current archive entry.- Parameters:
b- The byte to be written.- Throws:
java.io.IOException- on error
-
write
public void write(java.nio.file.Path path, java.nio.file.OpenOption... options) throws java.io.IOExceptionWrites all of the given input stream to the current archive entry.- Parameters:
path- the data source.options- options specifying how the file is opened.- Throws:
java.io.IOException- if an I/O error occurs.- Since:
- 1.21
-
-