Java ZipEntry.getName()
Syntax
ZipEntry.getName() has the following syntax.
public String getName()
Example
In the following code shows how to use ZipEntry.getName() method.
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
/*w w w. j av a 2 s. co m*/
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.getName());
}
}
}