Package | Description |
---|---|
org.apache.commons.compress.archivers.zip |
Provides stream classes for reading and writing archives using
the ZIP format.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
FallbackZipEncoding
A fallback ZipEncoding, which uses a java.io means to encode names.
|
(package private) class |
NioZipEncoding
A ZipEncoding, which uses a java.nio
Charset to encode names. |
(package private) class |
Simple8BitZipEncoding
This ZipEncoding implementation implements a simple 8bit character
set, which mets the following restrictions:
Characters 0x0000 to 0x007f are encoded as the corresponding
byte values 0x00 to 0x7f.
All byte codes from 0x80 to 0xff are mapped to a unique unicode
character in the range 0x0080 to 0x7fff.
|
Modifier and Type | Field and Description |
---|---|
(package private) static ZipEncoding |
ZipEncodingHelper.UTF8_ZIP_ENCODING
name of the encoding UTF-8
|
private ZipEncoding |
ZipArchiveOutputStream.zipEncoding
The zip encoding to use for filenames and the file comment.
|
private ZipEncoding |
ZipArchiveInputStream.zipEncoding
The zip encoding to use for filenames and the file comment.
|
private ZipEncoding |
ZipFile.zipEncoding
The zip encoding to use for filenames and the file comment.
|
Modifier and Type | Method and Description |
---|---|
(package private) static ZipEncoding |
ZipEncodingHelper.getZipEncoding(java.lang.String name)
Instantiates a zip encoding.
|