Say I get a list of file objects from a REST call
List<FileItem> zipFileList = processRequest(request);
where request is a HttpServletRequest
I want to unzip each file and write its unzipped contents to disk. Is this possible on the fly or do I first have to save the file to disk, and then unzip it? Thanks!