• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Unzipping a .zip file containing .gif files

 
Ranch Hand
Posts: 185
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The problem I am having is that I am trying to unzip a .zip file and read the first file. This works fine when the .zip file contains text files but when it contains .gif the file extracts but when I try to view it, it cannot be read. Please Help!! Thank you david.
Below is the code I have so far....
public void extractFirstFile()
{
try {
// Open the ZIP file
String inFilename = fileName;
ZipInputStream in = new ZipInputStream(new FileInputStream(fileName));
// Get the first entry
ZipEntry entry = in.getNextEntry();
// Open the output file
String outFilename = "uladulla 007.jpg";
OutputStream out = new FileOutputStream(outFilename);
// Transfer bytes from the ZIP file to the output file
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
// Close the streams
out.close();
in.close();
} catch (IOException e) {
}
 
david allen
Ranch Hand
Posts: 185
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
have it working thanks anyway.....
reply
    Bookmark Topic Watch Topic
  • New Topic