rt/emul/mini/src/main/java/java/util/zip/package.html
changeset 772 d382dacfd73f
parent 609 48ef38e9677e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/emul/mini/src/main/java/java/util/zip/package.html	Tue Feb 26 16:54:16 2013 +0100
     1.3 @@ -0,0 +1,98 @@
     1.4 +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
     1.5 +<html>
     1.6 +<head>
     1.7 +<!--
     1.8 +Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
     1.9 +DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
    1.10 +
    1.11 +This code is free software; you can redistribute it and/or modify it
    1.12 +under the terms of the GNU General Public License version 2 only, as
    1.13 +published by the Free Software Foundation.  Oracle designates this
    1.14 +particular file as subject to the "Classpath" exception as provided
    1.15 +by Oracle in the LICENSE file that accompanied this code.
    1.16 +
    1.17 +This code is distributed in the hope that it will be useful, but WITHOUT
    1.18 +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.19 +FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.20 +version 2 for more details (a copy is included in the LICENSE file that
    1.21 +accompanied this code).
    1.22 +
    1.23 +You should have received a copy of the GNU General Public License version
    1.24 +2 along with this work; if not, write to the Free Software Foundation,
    1.25 +Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.26 +
    1.27 +Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.28 +or visit www.oracle.com if you need additional information or have any
    1.29 +questions.
    1.30 +-->
    1.31 +
    1.32 +</head>
    1.33 +<body bgcolor="white">
    1.34 +
    1.35 +Provides classes for reading and writing the standard ZIP and GZIP
    1.36 +file formats.  Also includes classes for compressing and decompressing
    1.37 +data using the DEFLATE compression algorithm, which is used by the
    1.38 +ZIP and GZIP file formats. Additionally, there are utility classes
    1.39 +for computing the CRC-32 and Adler-32 checksums of arbitrary
    1.40 +input streams.
    1.41 +
    1.42 +
    1.43 +<h2>Package Specification</h2>
    1.44 +
    1.45 +</a>
    1.46 +<ul>
    1.47 +  <li><a href="ftp://ftp.uu.net/pub/archiving/zip/doc/appnote-970311-iz.zip">
    1.48 +      Info-ZIP Application Note 970311
    1.49 +      </a> - a detailed description of the Info-ZIP format upon which
    1.50 +      the <code>java.util.zip</code> classes are based.
    1.51 +<p>
    1.52 +  <a name="zip64">
    1.53 +  <li>An implementation may optionally support the ZIP64(tm) format extensions
    1.54 +      defined by the 
    1.55 +      <a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT">
    1.56 +      PKWARE ZIP File Format Specification</a>. The ZIP64(tm) format extensions
    1.57 +      are used to overcome the size limitations of the original ZIP format.
    1.58 +<p>
    1.59 +  <a name="lang_encoding">
    1.60 +  <li>APPENDIX D of <a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT">
    1.61 +      PKWARE ZIP File Format Specification</a> - Language Encoding Flag (EFS) to
    1.62 +      encode ZIP entry filename and comment fields using UTF-8.
    1.63 +<p>
    1.64 +  <li><a href="http://www.ietf.org/rfc/rfc1950.txt">
    1.65 +      ZLIB Compressed Data Format Specification version 3.3</a>
    1.66 +      &nbsp;
    1.67 +      <a href="http://www.ietf.org/rfc/rfc1950.txt.pdf">(pdf)</a>
    1.68 +      (RFC 1950)
    1.69 +<p>
    1.70 +  <li><a href="http://www.ietf.org/rfc/rfc1951.txt">
    1.71 +      DEFLATE Compressed Data Format Specification version 1.3</a>
    1.72 +      &nbsp;
    1.73 +      <a href="http://www.ietf.org/rfc/rfc1951.txt.pdf">(pdf)</a>
    1.74 +      (RFC 1951)
    1.75 +<p>
    1.76 +  <li><a href="http://www.ietf.org/rfc/rfc1952.txt">
    1.77 +      GZIP file format specification version 4.3</a>
    1.78 +      &nbsp;
    1.79 +      <a href="http://www.ietf.org/rfc/rfc1952.txt.pdf">(pdf)</a>
    1.80 +      (RFC 1952)
    1.81 +<p>
    1.82 +  <li>CRC-32 checksum is described in RFC 1952 (above)
    1.83 +<p>
    1.84 +  <li>Adler-32 checksum is described in RFC 1950 (above)
    1.85 +</ul>
    1.86 +
    1.87 +
    1.88 +<!--
    1.89 +<h2>Related Documentation</h2>
    1.90 +
    1.91 +For overviews, tutorials, examples, guides, and tool documentation, please see:
    1.92 +<ul>
    1.93 +  <li><a href="">##### REFER TO NON-SPEC DOCUMENTATION HERE #####</a>
    1.94 +</ul>
    1.95 +-->
    1.96 +
    1.97 +@since JDK1.1
    1.98 +</body>
    1.99 +</html>
   1.100 +
   1.101 +