How can I get an InputStream
for a ZipEntry
from a ZipInputStream
without using the ZipFile
class?
Err, the ZipInputStream
already is an InputStream.
You don't need another one. Getting the next ZipEntry
positions the stream at the beginning of the entry. See the Javadoc.