author | sherman |
Thu, 16 Apr 2009 21:00:42 -0700 | |
changeset 2592 | ef26f663a2ba |
parent 2438 | 21c111b51aa8 |
child 5506 | 202f599c92aa |
child 5604 | d5b97d8361d0 |
permissions | -rw-r--r-- |
2 | 1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> |
2 |
<html> |
|
3 |
<head> |
|
4 |
<!-- |
|
5 |
Copyright 1998-2002 Sun Microsystems, Inc. All Rights Reserved. |
|
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 |
|
10 |
published by the Free Software Foundation. Sun designates this |
|
11 |
particular file as subject to the "Classpath" exception as provided |
|
12 |
by Sun in the LICENSE file that accompanied this code. |
|
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 |
||
24 |
Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
25 |
CA 95054 USA or visit www.sun.com if you need additional information or |
|
26 |
have any questions. |
|
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 |
</a> |
|
43 |
<ul> |
|
44 |
<li><a href="ftp://ftp.uu.net/pub/archiving/zip/doc/appnote-970311-iz.zip"> |
|
45 |
Info-ZIP Application Note 970311 |
|
46 |
</a> - a detailed description of the Info-ZIP format upon which |
|
47 |
the <code>java.util.zip</code> classes are based. |
|
48 |
<p> |
|
2438 | 49 |
<a name="zip64"> |
50 |
<li>An implementation may optionally support the ZIP64(tm) format extensions |
|
51 |
defined by the |
|
52 |
<a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT"> |
|
53 |
PKWARE ZIP File Format Specification</a>. The ZIP64(tm) format extensions |
|
54 |
are used to overcome the size limitations of the original ZIP format. |
|
55 |
<p> |
|
2592
ef26f663a2ba
4244499: ZipEntry() does not convert filenames from Unicode to platform
sherman
parents:
2438
diff
changeset
|
56 |
<a name="lang_encoding"> |
ef26f663a2ba
4244499: ZipEntry() does not convert filenames from Unicode to platform
sherman
parents:
2438
diff
changeset
|
57 |
<li>APPENDIX D of <a href="http://www.pkware.com/documents/casestudies/APPNOTE.TXT"> |
ef26f663a2ba
4244499: ZipEntry() does not convert filenames from Unicode to platform
sherman
parents:
2438
diff
changeset
|
58 |
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
|
59 |
encode ZIP entry filename and comment fields using UTF-8. |
ef26f663a2ba
4244499: ZipEntry() does not convert filenames from Unicode to platform
sherman
parents:
2438
diff
changeset
|
60 |
<p> |
2 | 61 |
<li><a href="http://www.isi.edu/in-notes/rfc1950.txt"> |
62 |
ZLIB Compressed Data Format Specification version 3.3</a> |
|
63 |
|
|
64 |
<a href="http://www.isi.edu/in-notes/rfc1950.ps"> |
|
65 |
(PostScript)</a> |
|
66 |
(RFC 1950) |
|
67 |
<p> |
|
68 |
<li><a href="http://www.isi.edu/in-notes/rfc1951.txt"> |
|
69 |
DEFLATE Compressed Data Format Specification version 1.3</a> |
|
70 |
|
|
71 |
<a href="http://www.isi.edu/in-notes/rfc1951.ps"> |
|
72 |
(PostScript)</a> |
|
73 |
(RFC 1951) |
|
74 |
<p> |
|
75 |
<li><a href="http://www.isi.edu/in-notes/rfc1952.txt"> |
|
76 |
GZIP file format specification version 4.3</a> |
|
77 |
|
|
78 |
<a href="http://www.isi.edu/in-notes/rfc1952.ps"> |
|
79 |
(PostScript)</a> |
|
80 |
(RFC 1952) |
|
81 |
<p> |
|
82 |
<li>CRC-32 checksum is described in RFC 1952 (above) |
|
83 |
<p> |
|
84 |
<li>Adler-32 checksum is described in RFC 1950 (above) |
|
85 |
</ul> |
|
86 |
||
87 |
||
88 |
<!-- |
|
89 |
<h2>Related Documentation</h2> |
|
90 |
||
91 |
For overviews, tutorials, examples, guides, and tool documentation, please see: |
|
92 |
<ul> |
|
93 |
<li><a href="">##### REFER TO NON-SPEC DOCUMENTATION HERE #####</a> |
|
94 |
</ul> |
|
95 |
--> |
|
96 |
||
97 |
@since JDK1.1 |
|
98 |
</body> |
|
99 |
</html> |
|
100 |
||
101 |