I have understood how to read/parse a ZIP file from FILE.ZIP in java. I have a base64 String of a zipfile. So It is not needed to save the file on disk. Just handle in memory
BUT It is needed to receive from web request a container.zip in Json/String whatever format, open and parse it and send back to client also as container.zip
The question is, what is a better way to read/parse/unzip String in memory without saving it on PC? And how to Zip The Json/String back to arhchive.zip, but not as FiLE, but as Object or String to send it back?