I have this method:
private void unZipElementsTo(String inputZipFileName, String destPath) throws FileNotFoundException, IOException { OutputStream out
If out.close() or zf.close() in the finally block throw an exception then the other closes won't be executed.
out.close()
zf.close()
finally