In this tutorial you will see how to generate hash code of Zip file.
In this tutorial you will see how to generate hash code of Zip file.In this tutorial, we will see how to generate hash code of zip file entries. The ZipFile
class is used to read entries of zip files. The entries()
methods of ZipFile class returns
enumeration of zip file
entries. The hashCode() method of ZipFile class returns
hash
code of associated entry. The hasMoreElements() of Enumeration
class check the
availability of more entries in zip file, and
nextElement()
method returns next
element of entry.
About ZipFile API:
The java.util.zip.ZipFile class extends java.io.FilterIntputStream class.
It
provides the following methods:
Return Type | Method | Description |
int | hashCode() | The hashCode() method returns hash code of associated method. |
enumeration | entries() | The entries() method returns enumeration of entries of zip file. |
import java.io.*;
|
C:\>java ZipHashCode |