Interface | Description |
---|---|
ArchiveEntry |
The entry of an archive.
|
Archiver |
An Archiver facades a specific archiving library, allowing for simple archiving of files and directories, and
extraction of archives.
|
Compressor |
A compressor facades a specific compression library, allowing for simple compression and decompression of files.
|
Class | Description |
---|---|
ArchiverFactory |
Factory for creating
Archiver instances by a given archiver type name. |
ArchiveStream |
An input stream of an archive.
|
CompressorFactory |
Factory for creating
Compressor instances by a given compression algorithm. |
FileType |
Holds the file extension as String and the corresponding
ArchiveFormat and/or CompressionType . |
IOUtils |
Utility class for I/O operations.
|
Enum | Description |
---|---|
ArchiveFormat |
Denotes an archive format such as zip or tar.
|
CompressionType |
Denotes a compression algorithm such as gzip or bzip2
|