Java IO Tutorial - Java ZipEntry.getComment()








Syntax

ZipEntry.getComment() has the following syntax.

public String getComment()

Example

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

//w  w  w. j  av  a  2  s  .  com
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.getComment());
    }
  }
}