Java IO Tutorial - Java ZipFile.getComment()








Syntax

ZipFile.getComment() has the following syntax.

public String getComment()

Example

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

/*from   ww  w. j  a  v  a 2s  . c o  m*/
import java.io.File;
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 {
    ZipFile zipFile = new ZipFile(new File("testfile.zip"),ZipFile.OPEN_READ);
    System.out.println(zipFile.getComment());
    Enumeration zipEntries = zipFile.entries();

    while (zipEntries.hasMoreElements()) {
      System.out.println(((ZipEntry) zipEntries.nextElement()).getName());
    }
  }
}