Hi,
I learned that it is very important to close streams. But how do I close a nested stream?
//Open new zip input stream with a nested file input stream
zip_input_stream = new ZipInputStream(new FileInputStream(zip_archive));
//Close zip input stream
zip_input_stream.close();
//How do I close the file input stream??