How to unzip (extract) a zip file? How to retrieve elements from a zip format file? All these type of questions are solved through the following example. This program shows you how to extract files from a zip file in which many different files are stored in compressed format and make a single zip file.
There are various type methods and APIs are explained as follows which are used in the following program to retrieve all the compressed elements from the zip file.
ZipEntry:
This is the class of java.util.zip.*; package of Java which is used
to zip file entries.
ZipFile.entries():
Above method of the ZipFile class gets the files entries of the zip
file format.
Enumeration.hasMoreElement():
This method checks whether more element elements are present or not for the
zip file which are enumerated.
Enumeration.nextElement():
This method gives you the next elements from the list of the files, which
are compressed and stored in the zip file.
Here is the code of the program:
import java.util.*;
|
|
Recommend the tutorial |



Ask Questions? Discuss: Unzip a ZIP File View All Comments
Post your Comment