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