Is there anyway to find/estimate the size of ZipInputStream before we completely read the stream?
For instance, we can get the entry's metadata with getNextEntry before we can read the userdata.
Inputstream has a method available() to return an estimate of the number of bytes that can be read from this input stream but I am not able to find a similar method for ZipInputStream.