Uses of Interface
org.apache.commons.compress.archivers.zip.ZipEncoding

Packages that use ZipEncoding
org.apache.commons.compress.archivers.zip Provides stream classes for reading and writing archives using the ZIP format. 
 

Uses of ZipEncoding in org.apache.commons.compress.archivers.zip
 

Classes in org.apache.commons.compress.archivers.zip that implement ZipEncoding
(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.
 

Fields in org.apache.commons.compress.archivers.zip declared as ZipEncoding
(package private) static ZipEncoding ZipEncodingHelper.UTF8_ZIP_ENCODING
          name of the encoding UTF-8
private  ZipEncoding ZipFile.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 ZipArchiveOutputStream.zipEncoding
          The zip encoding to use for filenames and the file comment.
 

Methods in org.apache.commons.compress.archivers.zip that return ZipEncoding
(package private) static ZipEncoding ZipEncodingHelper.getZipEncoding(java.lang.String name)
          Instantiates a zip encoding.