< prev index next >

src/java.base/share/classes/java/util/zip/package-info.java

Print this page
8203328: Rename EFS in java.util.zip internals to something meaningful
Reviewed-by: sherman


  29  * the DEFLATE compression algorithm, which is used by the ZIP and GZIP file
  30  * formats. Additionally, there are utility classes for computing the CRC-32,
  31  * CRC-32C and Adler-32 checksums of arbitrary input streams.
  32  *
  33  * <h2>Package Specification</h2>
  34  *
  35  * <ul>
  36  *     <li><a href="http://www.info-zip.org/doc/appnote-19970311-iz.zip">
  37  *         Info-ZIP Application Note 970311</a> - a detailed description of
  38  *         the Info-ZIP format upon which the {@code java.util.zip} classes
  39  *         are based.
  40  *     <li><a id="zip64">An implementation may optionally support the
  41  *         ZIP64(tm) format extensions defined by the</a>
  42  *         <a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT">
  43  *         PKWARE ZIP File Format Specification</a>. The ZIP64(tm) format
  44  *         extensions are used to overcome the size limitations of the
  45  *         original ZIP format.
  46  *     <li><a id="lang_encoding">APPENDIX D of</a>
  47  *         <a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT">
  48  *         PKWARE ZIP File Format Specification</a> - Language Encoding Flag
  49  *         (EFS) to encode ZIP entry filename and comment fields using UTF-8.
  50  *     <li><a href="http://www.ietf.org/rfc/rfc1950.txt">
  51  *         ZLIB Compressed Data Format Specification version 3.3</a>
  52  *         &nbsp;
  53  *         <a href="http://www.ietf.org/rfc/rfc1950.txt.pdf">(pdf)</a>
  54  *         (RFC 1950)
  55  *     <li><a href="http://www.ietf.org/rfc/rfc1951.txt">
  56  *         DEFLATE Compressed Data Format Specification version 1.3</a>
  57  *         &nbsp;
  58  *         <a href="http://www.ietf.org/rfc/rfc1951.txt.pdf">(pdf)</a>
  59  *         (RFC 1951)
  60  *     <li><a href="http://www.ietf.org/rfc/rfc1952.txt">
  61  *         GZIP file format specification version 4.3</a>
  62  *         &nbsp;
  63  *         <a href="http://www.ietf.org/rfc/rfc1952.txt.pdf">(pdf)</a>
  64  *         (RFC 1952)
  65  *     <li>CRC-32 checksum is described in RFC 1952 (above)
  66  *     <li>CRC-32C checksum is described in
  67  *         <a href="http://www.ietf.org/rfc/rfc3720.txt">Internet Small
  68  *         Computer Systems Interface (iSCSI)</a>
  69  *         &nbsp;


  29  * the DEFLATE compression algorithm, which is used by the ZIP and GZIP file
  30  * formats. Additionally, there are utility classes for computing the CRC-32,
  31  * CRC-32C and Adler-32 checksums of arbitrary input streams.
  32  *
  33  * <h2>Package Specification</h2>
  34  *
  35  * <ul>
  36  *     <li><a href="http://www.info-zip.org/doc/appnote-19970311-iz.zip">
  37  *         Info-ZIP Application Note 970311</a> - a detailed description of
  38  *         the Info-ZIP format upon which the {@code java.util.zip} classes
  39  *         are based.
  40  *     <li><a id="zip64">An implementation may optionally support the
  41  *         ZIP64(tm) format extensions defined by the</a>
  42  *         <a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT">
  43  *         PKWARE ZIP File Format Specification</a>. The ZIP64(tm) format
  44  *         extensions are used to overcome the size limitations of the
  45  *         original ZIP format.
  46  *     <li><a id="lang_encoding">APPENDIX D of</a>
  47  *         <a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT">
  48  *         PKWARE ZIP File Format Specification</a> - Language Encoding Flag
  49  *         to encode ZIP entry filename and comment fields using UTF-8.
  50  *     <li><a href="http://www.ietf.org/rfc/rfc1950.txt">
  51  *         ZLIB Compressed Data Format Specification version 3.3</a>
  52  *         &nbsp;
  53  *         <a href="http://www.ietf.org/rfc/rfc1950.txt.pdf">(pdf)</a>
  54  *         (RFC 1950)
  55  *     <li><a href="http://www.ietf.org/rfc/rfc1951.txt">
  56  *         DEFLATE Compressed Data Format Specification version 1.3</a>
  57  *         &nbsp;
  58  *         <a href="http://www.ietf.org/rfc/rfc1951.txt.pdf">(pdf)</a>
  59  *         (RFC 1951)
  60  *     <li><a href="http://www.ietf.org/rfc/rfc1952.txt">
  61  *         GZIP file format specification version 4.3</a>
  62  *         &nbsp;
  63  *         <a href="http://www.ietf.org/rfc/rfc1952.txt.pdf">(pdf)</a>
  64  *         (RFC 1952)
  65  *     <li>CRC-32 checksum is described in RFC 1952 (above)
  66  *     <li>CRC-32C checksum is described in
  67  *         <a href="http://www.ietf.org/rfc/rfc3720.txt">Internet Small
  68  *         Computer Systems Interface (iSCSI)</a>
  69  *         &nbsp;
< prev index next >