author | yan |
Wed, 30 Apr 2014 15:02:24 +0400 | |
changeset 24196 | 61c9885d76e2 |
parent 13819 | bea90847ee7e |
child 24865 | 09b1d992ca72 |
permissions | -rw-r--r-- |
2 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
2 |
<html> |
|
3 |
<head> |
|
4 |
<!-- |
|
13819
bea90847ee7e
7195933: There is incorrect link to "Info-ZIP Application Note 970311" in doc page of Package java.util.zip
dxu
parents:
9035
diff
changeset
|
5 |
Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved. |
2 | 6 |
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
7 |
||
8 |
This code is free software; you can redistribute it and/or modify it |
|
9 |
under the terms of the GNU General Public License version 2 only, as |
|
5506 | 10 |
published by the Free Software Foundation. Oracle designates this |
2 | 11 |
particular file as subject to the "Classpath" exception as provided |
5506 | 12 |
by Oracle in the LICENSE file that accompanied this code. |
2 | 13 |
|
14 |
This code is distributed in the hope that it will be useful, but WITHOUT |
|
15 |
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
16 |
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
17 |
version 2 for more details (a copy is included in the LICENSE file that |
|
18 |
accompanied this code). |
|
19 |
||
20 |
You should have received a copy of the GNU General Public License version |
|
21 |
2 along with this work; if not, write to the Free Software Foundation, |
|
22 |
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
23 |
||
5551
327690766109
6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents:
5506
diff
changeset
|
24 |
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
327690766109
6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents:
5506
diff
changeset
|
25 |
or visit www.oracle.com if you need additional information or have any |
327690766109
6956202: Fix a few missed rebranding issues, please contact lines etc.
ohair
parents:
5506
diff
changeset
|
26 |
questions. |
2 | 27 |
--> |
28 |
||
29 |
</head> |
|
30 |
<body bgcolor="white"> |
|
31 |
||
32 |
Provides classes for reading and writing the standard ZIP and GZIP |
|
33 |
file formats. Also includes classes for compressing and decompressing |
|
34 |
data using the DEFLATE compression algorithm, which is used by the |
|
35 |
ZIP and GZIP file formats. Additionally, there are utility classes |
|
36 |
for computing the CRC-32 and Adler-32 checksums of arbitrary |
|
37 |
input streams. |
|
38 |
||
39 |
||
40 |
<h2>Package Specification</h2> |
|
41 |
||
42 |
<ul> |
|
13819
bea90847ee7e
7195933: There is incorrect link to "Info-ZIP Application Note 970311" in doc page of Package java.util.zip
dxu
parents:
9035
diff
changeset
|
43 |
<li><a href="http://www.info-zip.org/doc/appnote-19970311-iz.zip"> |
2 | 44 |
Info-ZIP Application Note 970311 |
45 |
</a> - a detailed description of the Info-ZIP format upon which |
|
46 |
the <code>java.util.zip</code> classes are based. |
|
24196
61c9885d76e2
8029451: Tidy warnings cleanup for java.util package; minor changes in java.nio, java.sql
yan
parents:
13819
diff
changeset
|
47 |
<li><a name="zip64">An implementation may optionally support the ZIP64(tm) format extensions |
61c9885d76e2
8029451: Tidy warnings cleanup for java.util package; minor changes in java.nio, java.sql
yan
parents:
13819
diff
changeset
|
48 |
defined by the </a> |
2438 | 49 |
<a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT"> |
50 |
PKWARE ZIP File Format Specification</a>. The ZIP64(tm) format extensions |
|
51 |
are used to overcome the size limitations of the original ZIP format. |
|
24196
61c9885d76e2
8029451: Tidy warnings cleanup for java.util package; minor changes in java.nio, java.sql
yan
parents:
13819
diff
changeset
|
52 |
<li><a name="lang_encoding">APPENDIX D of </a><a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT"> |
2592
ef26f663a2ba
4244499: ZipEntry() does not convert filenames from Unicode to platform
sherman
parents:
2438
diff
changeset
|
53 |
PKWARE ZIP File Format Specification</a> - Language Encoding Flag (EFS) to |
ef26f663a2ba
4244499: ZipEntry() does not convert filenames from Unicode to platform
sherman
parents:
2438
diff
changeset
|
54 |
encode ZIP entry filename and comment fields using UTF-8. |
5604
d5b97d8361d0
6952701: Use http://www.ietf.org/rfc for rfc references in jdk public APIs
sherman
parents:
2592
diff
changeset
|
55 |
<li><a href="http://www.ietf.org/rfc/rfc1950.txt"> |
2 | 56 |
ZLIB Compressed Data Format Specification version 3.3</a> |
57 |
|
|
5604
d5b97d8361d0
6952701: Use http://www.ietf.org/rfc for rfc references in jdk public APIs
sherman
parents:
2592
diff
changeset
|
58 |
<a href="http://www.ietf.org/rfc/rfc1950.txt.pdf">(pdf)</a> |
2 | 59 |
(RFC 1950) |
5604
d5b97d8361d0
6952701: Use http://www.ietf.org/rfc for rfc references in jdk public APIs
sherman
parents:
2592
diff
changeset
|
60 |
<li><a href="http://www.ietf.org/rfc/rfc1951.txt"> |
2 | 61 |
DEFLATE Compressed Data Format Specification version 1.3</a> |
62 |
|
|
5604
d5b97d8361d0
6952701: Use http://www.ietf.org/rfc for rfc references in jdk public APIs
sherman
parents:
2592
diff
changeset
|
63 |
<a href="http://www.ietf.org/rfc/rfc1951.txt.pdf">(pdf)</a> |
2 | 64 |
(RFC 1951) |
5604
d5b97d8361d0
6952701: Use http://www.ietf.org/rfc for rfc references in jdk public APIs
sherman
parents:
2592
diff
changeset
|
65 |
<li><a href="http://www.ietf.org/rfc/rfc1952.txt"> |
2 | 66 |
GZIP file format specification version 4.3</a> |
67 |
|
|
5604
d5b97d8361d0
6952701: Use http://www.ietf.org/rfc for rfc references in jdk public APIs
sherman
parents:
2592
diff
changeset
|
68 |
<a href="http://www.ietf.org/rfc/rfc1952.txt.pdf">(pdf)</a> |
2 | 69 |
(RFC 1952) |
70 |
<li>CRC-32 checksum is described in RFC 1952 (above) |
|
71 |
<li>Adler-32 checksum is described in RFC 1950 (above) |
|
72 |
</ul> |
|
73 |
||
74 |
||
75 |
<!-- |
|
76 |
<h2>Related Documentation</h2> |
|
77 |
||
78 |
For overviews, tutorials, examples, guides, and tool documentation, please see: |
|
79 |
<ul> |
|
80 |
<li><a href="">##### REFER TO NON-SPEC DOCUMENTATION HERE #####</a> |
|
81 |
</ul> |
|
82 |
--> |
|
83 |
||
84 |
@since JDK1.1 |
|
85 |
</body> |
|
86 |
</html> |
|
87 |
||
88 |