Open Zip File From File Object Example
This Java example shows how to open specified zip
file using File object.
Output of Above Java Program c:\FileIO\WebFiles.zip Opened for reading!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | import java.io.File; import java.io.IOException; import java.util.zip.ZipFile; public class OpenZipFileFileObject { public static void main(String args[]) { try { /* * Create file object for specified zip file. */ File file = new File("c:/FileIO/WebFiles.zip"); /* * To Open a zip file from File object, use * * ZipFile(File file) * constructor of the ZipFile class. * * This constructor throws IOException for any I/O error. */ ZipFile zipFile = new ZipFile(file); System.out.println(zipFile.getName() + " Opened for reading!"); /* * close the opened zip file using, * void close() * method. */ zipFile.close(); } catch (IOException ioe) { System.out.println( "Error opening zip file" + ioe); } } } |
Output of Above Java Program c:\FileIO\WebFiles.zip Opened for reading!