I am trying to use ZipInputStream to put each file inside the archive in an ArrayList. Can I do this with ZipInputStream?
My main goal is to unzip cbr/cbz files (archives containing only images (jpg/png)), I am trying to put each of these images on a ArrayList so the ZipInputStream to ArrayList was my plan to eventually get them to Bitmaps, but if you can get them to Bitmaps straight from the ZipInputStream would be great!
In the end, doing what I originally planned took too much memory! Instead I ended up just taking one ZipEntry at a time, but only the one I wanted that way it wouldn’t have to loop through each one everytime.
}
Just had to quickly loop through at the beginning to get all the names