skip to main | skip to sidebar

Java Programs and Examples with Output

Pages

▼
 
  • RSS
  • Twitter
Thursday, October 4, 2012

List The Contents of a ZIP File Utility

Posted by Admin at 11:31 AM – 0 comments
 
To list the contents of a zip file you need to get the entries of the file since every file in a zip file is represented by an entry. In this case we assume that the filename of the zip file is ' d:/FeedtoInterfaces.zip '. By calling the entries method of the Zip File object we get an Enumeration back that can be used to loop through the entries of the file. Note that we have to cast each element in the Enumeration to a ZipEntry. Normally some more extensive processing of the entries would probably be done, but here we just print out the name of each entry (i.e. the name of the file or directory in the zip file)

import java.io.IOException;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;


public class ZipContents{
    
    public void listContentsOfZipFile() {
        
        try {
            ZipFile zipFile = new ZipFile("d:/FeedtoInterfaces.zip");
            
            Enumeration zipEntries = zipFile.entries();
            
            while (zipEntries.hasMoreElements()) {
                
                //Process the name, here we just print it out
                System.out.println(((ZipEntry)zipEntries.nextElement()).getName());
                
            }
            
        } catch (IOException ex) {
            ex.printStackTrace();
        }
        
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        
        new  ZipContents().listContentsOfZipFile();
        
    }
}

Leave a Reply

Newer Post Older Post
Subscribe to: Post Comments ( Atom )
  • Popular
  • Recent
  • Archives
Powered by Blogger.
 
 
 
© 2011 Java Programs and Examples with Output | Designs by Web2feel & Fab Themes

Bloggerized by DheTemplate.com - Main Blogger