os = new FileOutputStream(tempFile);
StreamUtils.copyStream(zipUrl.openStream(), os, true);
LOG.info("unzipping into {}", installDir);
ZipExploder exploder = new ZipExploder();
exploder.processFile(tempFile.getAbsolutePath(), installDir.getAbsolutePath());
}
finally {
tempFile.delete();
}
}