I have read following topic: Should one call .close() on HttpServletResponse.getOutputStream()/.getWriter()?
But what if I use following construction:
ZipOutputStream zos = new ZipOutputStream(response.getOutputStream());
Should I close it or container will do it instead of me?