Monday 21 March 2011

Retrieve a compressed file from a ZIP file

try {
// Open the ZIP file
String sourcefile = "source.zip";
ZipInputStream in = new ZipInputStream(new FileInputStream(sourcefile));

// Get the first entry
ZipEntry entry = in.getNextEntry();

// Open the output file
String targetfile = "target";
OutputStream out = new FileOutputStream(targetfile);

// 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) {
}

No comments:

Post a Comment