Java Zip file Export Options

166 Views Asked by At

My requirement is:

  • User will upload a .zip file (which will contain multiple files) via API and I need to send back the files to the user in response.

My solution 1:

  • returning list of the file download link to user in response. but the user is not happy with this solution.

Is there any other way return the list of file?

1

There are 1 best solutions below

0
bedrin On

Alternative solution would be to unzip your archive directly in browser using a library like zip.js or similar.