Java ZipEntry.getCrc()

Syntax

ZipEntry.getCrc() has the following syntax.

public long getCrc()

Example

In the following code shows how to use ZipEntry.getCrc() method.


//  w  ww. ja va2s .c om
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.getCrc());
    }
  }
} 




















Home »
  Java Tutorial »
    java.util.zip »




ZipEntry
ZipFile