I want to extract only image files inside a zip file. Any examples about this? How do I do this?
Solved this problem already.
Added a missing statement getInputStream()
I want to extract only image files inside a zip file. Any examples about this? How do I do this?
Solved this problem already.
Added a missing statement getInputStream()
Take a look at this answer for how to unzip a file. You could alter it by adding a filter on the ze.getName() to filter using a list of image extensions you are looking for.