source: release-kits/lirk3/resources/gs3-release-maker/ant/docs/manual/api/org/apache/tools/zip/ZipFile.html@ 14982

Last change on this file since 14982 was 14982, checked in by oranfry, 16 years ago

initial import of LiRK3

File size: 19.0 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<!--NewPage-->
3<HTML>
4<HEAD>
5<!-- Generated by javadoc (build 1.4.2_13) on Mon Oct 01 14:33:36 NZST 2007 -->
6<TITLE>
7ZipFile (Apache Ant API)
8</TITLE>
9
10<META NAME="keywords" CONTENT="org.apache.tools.zip.ZipFile class">
11
12<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
13
14<SCRIPT type="text/javascript">
15function windowTitle()
16{
17 parent.document.title="ZipFile (Apache Ant API)";
18}
19</SCRIPT>
20
21</HEAD>
22
23<BODY BGCOLOR="white" onload="windowTitle();">
24
25
26<!-- ========= START OF TOP NAVBAR ======= -->
27<A NAME="navbar_top"><!-- --></A>
28<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
29<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
30<TR>
31<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
32<A NAME="navbar_top_firstrow"><!-- --></A>
33<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
34 <TR ALIGN="center" VALIGN="top">
35 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
36 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
37 <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
38 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
39 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
40 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
41 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
42 </TR>
43</TABLE>
44</TD>
45<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
46</EM>
47</TD>
48</TR>
49
50<TR>
51<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
52&nbsp;<A HREF="../../../../org/apache/tools/zip/ZipEntry.html" title="class in org.apache.tools.zip"><B>PREV CLASS</B></A>&nbsp;
53&nbsp;<A HREF="../../../../org/apache/tools/zip/ZipLong.html" title="class in org.apache.tools.zip"><B>NEXT CLASS</B></A></FONT></TD>
54<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
55 <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp;
56&nbsp;<A HREF="ZipFile.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
57&nbsp;<SCRIPT type="text/javascript">
58 <!--
59 if(window==top) {
60 document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
61 }
62 //-->
63</SCRIPT>
64<NOSCRIPT>
65 <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
66</NOSCRIPT>
67
68</FONT></TD>
69</TR>
70<TR>
71<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
72 SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
73<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
74DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
75</TR>
76</TABLE>
77<A NAME="skip-navbar_top"></A>
78<!-- ========= END OF TOP NAVBAR ========= -->
79
80<HR>
81<!-- ======== START OF CLASS DATA ======== -->
82<H2>
83<FONT SIZE="-1">
84org.apache.tools.zip</FONT>
85<BR>
86Class ZipFile</H2>
87<PRE>
88java.lang.Object
89 <IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>org.apache.tools.zip.ZipFile</B>
90</PRE>
91<HR>
92<DL>
93<DT>public class <B>ZipFile</B><DT>extends java.lang.Object</DL>
94
95<P>
96Replacement for <code>java.util.ZipFile</code>.
97
98 <p>This class adds support for file name encodings other than UTF-8
99 (which is required to work on ZIP files created by native zip tools
100 and is able to skip a preamble like the one found in self
101 extracting archives. Furthermore it returns instances of
102 <code>org.apache.tools.zip.ZipEntry</code> instead of
103 <code>java.util.zip.ZipEntry</code>.</p>
104
105 <p>It doesn't extend <code>java.util.zip.ZipFile</code> as it would
106 have to reimplement all methods anyway. Like
107 <code>java.util.ZipFile</code>, it uses RandomAccessFile under the
108 covers and supports compressed and uncompressed entries.</p>
109
110 <p>The method signatures mimic the ones of
111 <code>java.util.zip.ZipFile</code>, with a couple of exceptions:
112
113 <ul>
114 <li>There is no getName method.</li>
115 <li>entries has been renamed to getEntries.</li>
116 <li>getEntries and getEntry return
117 <code>org.apache.tools.zip.ZipEntry</code> instances.</li>
118 <li>close is allowed to throw IOException.</li>
119 </ul>
120<P>
121
122<P>
123<HR>
124
125<P>
126<!-- ======== NESTED CLASS SUMMARY ======== -->
127
128
129<!-- =========== FIELD SUMMARY =========== -->
130
131
132<!-- ======== CONSTRUCTOR SUMMARY ======== -->
133
134<A NAME="constructor_summary"><!-- --></A>
135<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
136<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
137<TD COLSPAN=2><FONT SIZE="+2">
138<B>Constructor Summary</B></FONT></TD>
139</TR>
140<TR BGCOLOR="white" CLASS="TableRowColor">
141<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#ZipFile(java.io.File)">ZipFile</A></B>(java.io.File&nbsp;f)</CODE>
142
143<BR>
144&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Opens the given file for reading, assuming the platform's
145 native encoding for file names.</TD>
146</TR>
147<TR BGCOLOR="white" CLASS="TableRowColor">
148<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#ZipFile(java.io.File, java.lang.String)">ZipFile</A></B>(java.io.File&nbsp;f,
149 java.lang.String&nbsp;encoding)</CODE>
150
151<BR>
152&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Opens the given file for reading, assuming the specified
153 encoding for file names.</TD>
154</TR>
155<TR BGCOLOR="white" CLASS="TableRowColor">
156<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#ZipFile(java.lang.String)">ZipFile</A></B>(java.lang.String&nbsp;name)</CODE>
157
158<BR>
159&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Opens the given file for reading, assuming the platform's
160 native encoding for file names.</TD>
161</TR>
162<TR BGCOLOR="white" CLASS="TableRowColor">
163<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#ZipFile(java.lang.String, java.lang.String)">ZipFile</A></B>(java.lang.String&nbsp;name,
164 java.lang.String&nbsp;encoding)</CODE>
165
166<BR>
167&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Opens the given file for reading, assuming the specified
168 encoding for file names.</TD>
169</TR>
170</TABLE>
171&nbsp;
172<!-- ========== METHOD SUMMARY =========== -->
173
174<A NAME="method_summary"><!-- --></A>
175<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
176<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
177<TD COLSPAN=2><FONT SIZE="+2">
178<B>Method Summary</B></FONT></TD>
179</TR>
180<TR BGCOLOR="white" CLASS="TableRowColor">
181<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
182<CODE>&nbsp;void</CODE></FONT></TD>
183<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#close()">close</A></B>()</CODE>
184
185<BR>
186&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Closes the archive.</TD>
187</TR>
188<TR BGCOLOR="white" CLASS="TableRowColor">
189<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
190<CODE>protected static&nbsp;java.util.Date</CODE></FONT></TD>
191<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#fromDosTime(org.apache.tools.zip.ZipLong)">fromDosTime</A></B>(<A HREF="../../../../org/apache/tools/zip/ZipLong.html" title="class in org.apache.tools.zip">ZipLong</A>&nbsp;l)</CODE>
192
193<BR>
194&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Convert a DOS date/time field to a Date object.</TD>
195</TR>
196<TR BGCOLOR="white" CLASS="TableRowColor">
197<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
198<CODE>&nbsp;java.lang.String</CODE></FONT></TD>
199<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#getEncoding()">getEncoding</A></B>()</CODE>
200
201<BR>
202&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The encoding to use for filenames and the file comment.</TD>
203</TR>
204<TR BGCOLOR="white" CLASS="TableRowColor">
205<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
206<CODE>&nbsp;java.util.Enumeration</CODE></FONT></TD>
207<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#getEntries()">getEntries</A></B>()</CODE>
208
209<BR>
210&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns all entries.</TD>
211</TR>
212<TR BGCOLOR="white" CLASS="TableRowColor">
213<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
214<CODE>&nbsp;<A HREF="../../../../org/apache/tools/zip/ZipEntry.html" title="class in org.apache.tools.zip">ZipEntry</A></CODE></FONT></TD>
215<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#getEntry(java.lang.String)">getEntry</A></B>(java.lang.String&nbsp;name)</CODE>
216
217<BR>
218&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a named entry - or <code>null</code> if no entry by
219 that name exists.</TD>
220</TR>
221<TR BGCOLOR="white" CLASS="TableRowColor">
222<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
223<CODE>&nbsp;java.io.InputStream</CODE></FONT></TD>
224<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#getInputStream(org.apache.tools.zip.ZipEntry)">getInputStream</A></B>(<A HREF="../../../../org/apache/tools/zip/ZipEntry.html" title="class in org.apache.tools.zip">ZipEntry</A>&nbsp;ze)</CODE>
225
226<BR>
227&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an InputStream for reading the contents of the given entry.</TD>
228</TR>
229<TR BGCOLOR="white" CLASS="TableRowColor">
230<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
231<CODE>protected &nbsp;java.lang.String</CODE></FONT></TD>
232<TD><CODE><B><A HREF="../../../../org/apache/tools/zip/ZipFile.html#getString(byte[])">getString</A></B>(byte[]&nbsp;bytes)</CODE>
233
234<BR>
235&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Retrieve a String from the given bytes using the encoding set
236 for this ZipFile.</TD>
237</TR>
238</TABLE>
239&nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
240<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
241<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
242<TD><B>Methods inherited from class java.lang.Object</B></TD>
243</TR>
244<TR BGCOLOR="white" CLASS="TableRowColor">
245<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
246</TR>
247</TABLE>
248&nbsp;
249<P>
250
251<!-- ============ FIELD DETAIL =========== -->
252
253
254<!-- ========= CONSTRUCTOR DETAIL ======== -->
255
256<A NAME="constructor_detail"><!-- --></A>
257<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
258<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
259<TD COLSPAN=1><FONT SIZE="+2">
260<B>Constructor Detail</B></FONT></TD>
261</TR>
262</TABLE>
263
264<A NAME="ZipFile(java.io.File)"><!-- --></A><H3>
265ZipFile</H3>
266<PRE>
267public <B>ZipFile</B>(java.io.File&nbsp;f)
268 throws java.io.IOException</PRE>
269<DL>
270<DD>Opens the given file for reading, assuming the platform's
271 native encoding for file names.
272<P>
273<DT><B>Parameters:</B><DD><CODE>f</CODE> - the archive.
274<DT><B>Throws:</B>
275<DD><CODE>java.io.IOException</CODE> - if an error occurs while reading the file.</DL>
276<HR>
277
278<A NAME="ZipFile(java.lang.String)"><!-- --></A><H3>
279ZipFile</H3>
280<PRE>
281public <B>ZipFile</B>(java.lang.String&nbsp;name)
282 throws java.io.IOException</PRE>
283<DL>
284<DD>Opens the given file for reading, assuming the platform's
285 native encoding for file names.
286<P>
287<DT><B>Parameters:</B><DD><CODE>name</CODE> - name of the archive.
288<DT><B>Throws:</B>
289<DD><CODE>java.io.IOException</CODE> - if an error occurs while reading the file.</DL>
290<HR>
291
292<A NAME="ZipFile(java.lang.String, java.lang.String)"><!-- --></A><H3>
293ZipFile</H3>
294<PRE>
295public <B>ZipFile</B>(java.lang.String&nbsp;name,
296 java.lang.String&nbsp;encoding)
297 throws java.io.IOException</PRE>
298<DL>
299<DD>Opens the given file for reading, assuming the specified
300 encoding for file names.
301<P>
302<DT><B>Parameters:</B><DD><CODE>name</CODE> - name of the archive.<DD><CODE>encoding</CODE> - the encoding to use for file names
303<DT><B>Throws:</B>
304<DD><CODE>java.io.IOException</CODE> - if an error occurs while reading the file.</DL>
305<HR>
306
307<A NAME="ZipFile(java.io.File, java.lang.String)"><!-- --></A><H3>
308ZipFile</H3>
309<PRE>
310public <B>ZipFile</B>(java.io.File&nbsp;f,
311 java.lang.String&nbsp;encoding)
312 throws java.io.IOException</PRE>
313<DL>
314<DD>Opens the given file for reading, assuming the specified
315 encoding for file names.
316<P>
317<DT><B>Parameters:</B><DD><CODE>f</CODE> - the archive.<DD><CODE>encoding</CODE> - the encoding to use for file names
318<DT><B>Throws:</B>
319<DD><CODE>java.io.IOException</CODE> - if an error occurs while reading the file.</DL>
320
321<!-- ============ METHOD DETAIL ========== -->
322
323<A NAME="method_detail"><!-- --></A>
324<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
325<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
326<TD COLSPAN=1><FONT SIZE="+2">
327<B>Method Detail</B></FONT></TD>
328</TR>
329</TABLE>
330
331<A NAME="getEncoding()"><!-- --></A><H3>
332getEncoding</H3>
333<PRE>
334public java.lang.String <B>getEncoding</B>()</PRE>
335<DL>
336<DD>The encoding to use for filenames and the file comment.
337<P>
338<DD><DL>
339
340<DT><B>Returns:</B><DD>null if using the platform's default character encoding.</DL>
341</DD>
342</DL>
343<HR>
344
345<A NAME="close()"><!-- --></A><H3>
346close</H3>
347<PRE>
348public void <B>close</B>()
349 throws java.io.IOException</PRE>
350<DL>
351<DD>Closes the archive.
352<P>
353<DD><DL>
354
355<DT><B>Throws:</B>
356<DD><CODE>java.io.IOException</CODE> - if an error occurs closing the archive.</DL>
357</DD>
358</DL>
359<HR>
360
361<A NAME="getEntries()"><!-- --></A><H3>
362getEntries</H3>
363<PRE>
364public java.util.Enumeration <B>getEntries</B>()</PRE>
365<DL>
366<DD>Returns all entries.
367<P>
368<DD><DL>
369
370<DT><B>Returns:</B><DD>all entries as <A HREF="../../../../org/apache/tools/zip/ZipEntry.html" title="class in org.apache.tools.zip"><CODE>ZipEntry</CODE></A> instances</DL>
371</DD>
372</DL>
373<HR>
374
375<A NAME="getEntry(java.lang.String)"><!-- --></A><H3>
376getEntry</H3>
377<PRE>
378public <A HREF="../../../../org/apache/tools/zip/ZipEntry.html" title="class in org.apache.tools.zip">ZipEntry</A> <B>getEntry</B>(java.lang.String&nbsp;name)</PRE>
379<DL>
380<DD>Returns a named entry - or <code>null</code> if no entry by
381 that name exists.
382<P>
383<DD><DL>
384<DT><B>Parameters:</B><DD><CODE>name</CODE> - name of the entry.
385<DT><B>Returns:</B><DD>the ZipEntry corresponding to the given name - or
386 <code>null</code> if not present.</DL>
387</DD>
388</DL>
389<HR>
390
391<A NAME="getInputStream(org.apache.tools.zip.ZipEntry)"><!-- --></A><H3>
392getInputStream</H3>
393<PRE>
394public java.io.InputStream <B>getInputStream</B>(<A HREF="../../../../org/apache/tools/zip/ZipEntry.html" title="class in org.apache.tools.zip">ZipEntry</A>&nbsp;ze)
395 throws java.io.IOException,
396 java.util.zip.ZipException</PRE>
397<DL>
398<DD>Returns an InputStream for reading the contents of the given entry.
399<P>
400<DD><DL>
401<DT><B>Parameters:</B><DD><CODE>ze</CODE> - the entry to get the stream for.
402<DT><B>Returns:</B><DD>a stream to read the entry from.
403<DT><B>Throws:</B>
404<DD><CODE>java.io.IOException</CODE>
405<DD><CODE>java.util.zip.ZipException</CODE></DL>
406</DD>
407</DL>
408<HR>
409
410<A NAME="fromDosTime(org.apache.tools.zip.ZipLong)"><!-- --></A><H3>
411fromDosTime</H3>
412<PRE>
413protected static java.util.Date <B>fromDosTime</B>(<A HREF="../../../../org/apache/tools/zip/ZipLong.html" title="class in org.apache.tools.zip">ZipLong</A>&nbsp;l)</PRE>
414<DL>
415<DD>Convert a DOS date/time field to a Date object.
416<P>
417<DD><DL>
418<DT><B>Parameters:</B><DD><CODE>l</CODE> - contains the stored DOS time.
419<DT><B>Returns:</B><DD>a Date instance corresponding to the given time.</DL>
420</DD>
421</DL>
422<HR>
423
424<A NAME="getString(byte[])"><!-- --></A><H3>
425getString</H3>
426<PRE>
427protected java.lang.String <B>getString</B>(byte[]&nbsp;bytes)
428 throws java.util.zip.ZipException</PRE>
429<DL>
430<DD>Retrieve a String from the given bytes using the encoding set
431 for this ZipFile.
432<P>
433<DD><DL>
434<DT><B>Parameters:</B><DD><CODE>bytes</CODE> - the byte array to transform
435<DT><B>Returns:</B><DD>String obtained by using the given encoding
436<DT><B>Throws:</B>
437<DD><CODE>java.util.zip.ZipException</CODE> - if the encoding cannot be recognized.</DL>
438</DD>
439</DL>
440<!-- ========= END OF CLASS DATA ========= -->
441<HR>
442
443
444<!-- ======= START OF BOTTOM NAVBAR ====== -->
445<A NAME="navbar_bottom"><!-- --></A>
446<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
447<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
448<TR>
449<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
450<A NAME="navbar_bottom_firstrow"><!-- --></A>
451<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
452 <TR ALIGN="center" VALIGN="top">
453 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
454 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
455 <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
456 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
457 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
458 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
459 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
460 </TR>
461</TABLE>
462</TD>
463<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
464</EM>
465</TD>
466</TR>
467
468<TR>
469<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
470&nbsp;<A HREF="../../../../org/apache/tools/zip/ZipEntry.html" title="class in org.apache.tools.zip"><B>PREV CLASS</B></A>&nbsp;
471&nbsp;<A HREF="../../../../org/apache/tools/zip/ZipLong.html" title="class in org.apache.tools.zip"><B>NEXT CLASS</B></A></FONT></TD>
472<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
473 <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp;
474&nbsp;<A HREF="ZipFile.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
475&nbsp;<SCRIPT type="text/javascript">
476 <!--
477 if(window==top) {
478 document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
479 }
480 //-->
481</SCRIPT>
482<NOSCRIPT>
483 <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
484</NOSCRIPT>
485
486</FONT></TD>
487</TR>
488<TR>
489<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
490 SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
491<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
492DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
493</TR>
494</TABLE>
495<A NAME="skip-navbar_bottom"></A>
496<!-- ======== END OF BOTTOM NAVBAR ======= -->
497
498<HR>
499Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.
500</BODY>
501</HTML>
Note: See TracBrowser for help on using the repository browser.