Uses of Class
org.apache.commons.compress.archivers.ArchiveException
-
Packages that use ArchiveException Package Description org.apache.commons.compress.archivers Provides a unified API and factories for dealing with archives in different formats.org.apache.commons.compress.archivers.arj Provides stream classes for reading archives using the ARJ format.org.apache.commons.compress.archivers.dump This package provides stream classes for reading archives using the Unix DUMP format.org.apache.commons.compress.archivers.examples Contains example code that is not guaranteed to provide a stable API across releases of Commons Compress. -
-
Uses of ArchiveException in org.apache.commons.compress.archivers
Subclasses of ArchiveException in org.apache.commons.compress.archivers Modifier and Type Class Description classStreamingNotSupportedExceptionException thrown by ArchiveStreamFactory if a format is requested/detected that doesn't support streaming.Methods in org.apache.commons.compress.archivers that throw ArchiveException Modifier and Type Method Description ArchiveInputStreamArchiveStreamFactory. createArchiveInputStream(java.io.InputStream in)Create an archive input stream from an input stream, autodetecting the archive type from the first few bytes of the stream.ArchiveInputStreamArchiveStreamFactory. createArchiveInputStream(java.lang.String archiverName, java.io.InputStream in)Creates an archive input stream from an archiver name and an input stream.ArchiveInputStreamArchiveStreamFactory. createArchiveInputStream(java.lang.String archiverName, java.io.InputStream in, java.lang.String actualEncoding)ArchiveInputStreamArchiveStreamProvider. createArchiveInputStream(java.lang.String name, java.io.InputStream in, java.lang.String encoding)Creates an archive input stream from an archiver name and an input stream.private static ArchiveInputStreamLister. createArchiveInputStream(java.lang.String[] args, java.io.InputStream fis)ArchiveOutputStreamArchiveStreamFactory. createArchiveOutputStream(java.lang.String archiverName, java.io.OutputStream out)Creates an archive output stream from an archiver name and an output stream.ArchiveOutputStreamArchiveStreamFactory. createArchiveOutputStream(java.lang.String archiverName, java.io.OutputStream out, java.lang.String actualEncoding)ArchiveOutputStreamArchiveStreamProvider. createArchiveOutputStream(java.lang.String name, java.io.OutputStream out, java.lang.String encoding)Creates an archive output stream from an archiver name and an output stream.static java.lang.StringArchiveStreamFactory. detect(java.io.InputStream in)Try to determine the type of Archiverprivate static java.lang.StringLister. detectFormat(java.io.File f)private static voidLister. list7z(java.io.File f)private static voidLister. listStream(java.io.File f, java.lang.String[] args)private static voidLister. listZipUsingTarFile(java.io.File f)private static voidLister. listZipUsingZipFile(java.io.File f) -
Uses of ArchiveException in org.apache.commons.compress.archivers.arj
Constructors in org.apache.commons.compress.archivers.arj that throw ArchiveException Constructor Description ArjArchiveInputStream(java.io.InputStream inputStream)Constructs the ArjInputStream, taking ownership of the inputStream that is passed in, and using the CP437 character encoding.ArjArchiveInputStream(java.io.InputStream inputStream, java.lang.String charsetName)Constructs the ArjInputStream, taking ownership of the inputStream that is passed in. -
Uses of ArchiveException in org.apache.commons.compress.archivers.dump
Constructors in org.apache.commons.compress.archivers.dump that throw ArchiveException Constructor Description DumpArchiveInputStream(java.io.InputStream is)Constructor using the platform's default encoding for file names.DumpArchiveInputStream(java.io.InputStream is, java.lang.String encoding)Constructor. -
Uses of ArchiveException in org.apache.commons.compress.archivers.examples
Methods in org.apache.commons.compress.archivers.examples that throw ArchiveException Modifier and Type Method Description voidArchiver. create(java.lang.String format, java.io.File target, java.io.File directory)Creates an archivetargetusing the formatformatby recursively including all files and directories indirectory.voidArchiver. create(java.lang.String format, java.io.OutputStream target, java.io.File directory)Deprecated.this method leaks resourcesvoidArchiver. create(java.lang.String format, java.io.OutputStream target, java.io.File directory, CloseableConsumer closeableConsumer)Creates an archivetargetusing the formatformatby recursively including all files and directories indirectory.voidArchiver. create(java.lang.String format, java.nio.channels.SeekableByteChannel target, java.io.File directory)Deprecated.this method leaks resourcesvoidArchiver. create(java.lang.String format, java.nio.channels.SeekableByteChannel target, java.io.File directory, CloseableConsumer closeableConsumer)Creates an archivetargetusing the formatformatby recursively including all files and directories indirectory.voidArchiver. create(java.lang.String format, java.nio.file.Path target, java.nio.file.Path directory)Creates an archivetargetusing the formatformatby recursively including all files and directories indirectory.voidArchiver. create(ArchiveOutputStream target, java.io.File directory)Creates an archivetargetby recursively including all files and directories indirectory.voidExpander. expand(java.io.File archive, java.io.File targetDirectory)ExpandsarchiveintotargetDirectory.voidExpander. expand(java.io.InputStream archive, java.io.File targetDirectory)Deprecated.this method leaks resourcesvoidExpander. expand(java.io.InputStream archive, java.io.File targetDirectory, CloseableConsumer closeableConsumer)ExpandsarchiveintotargetDirectory.voidExpander. expand(java.lang.String format, java.io.File archive, java.io.File targetDirectory)ExpandsarchiveintotargetDirectory.voidExpander. expand(java.lang.String format, java.io.InputStream archive, java.io.File targetDirectory)Deprecated.this method leaks resourcesvoidExpander. expand(java.lang.String format, java.io.InputStream archive, java.io.File targetDirectory, CloseableConsumer closeableConsumer)ExpandsarchiveintotargetDirectory.voidExpander. expand(java.lang.String format, java.nio.channels.SeekableByteChannel archive, java.io.File targetDirectory)Deprecated.this method leaks resourcesvoidExpander. expand(java.lang.String format, java.nio.channels.SeekableByteChannel archive, java.io.File targetDirectory, CloseableConsumer closeableConsumer)ExpandsarchiveintotargetDirectory.voidExpander. expand(ArchiveInputStream archive, java.io.File targetDirectory)ExpandsarchiveintotargetDirectory.voidExpander. expand(SevenZFile archive, java.io.File targetDirectory)ExpandsarchiveintotargetDirectory.voidExpander. expand(TarFile archive, java.io.File targetDirectory)ExpandsarchiveintotargetDirectory.voidExpander. expand(ZipFile archive, java.io.File targetDirectory)ExpandsarchiveintotargetDirectory.
-