Java ZipEntry.hashCode()
Syntax
ZipEntry.hashCode() has the following syntax.
public int hashCode()
Example
In the following code shows how to use ZipEntry.hashCode() method.
// ww w. j a va 2s. co m
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
public class Main {
public static void main(String[] args) throws Exception {
String zipname = "data.zip";
ZipFile zipFile = new ZipFile(zipname);
Enumeration enumeration = zipFile.entries();
while (enumeration.hasMoreElements()) {
ZipEntry zipEntry = (ZipEntry) enumeration.nextElement();
System.out.println(zipEntry.hashCode());
}
}
}