How can I get an InputStream
for a ZipEntry
from a ZipInputStream
without using the ZipFile
class?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Err, the
ZipInputStream
already is anInputStream.
You don't need another one. Getting the nextZipEntry
positions the stream at the beginning of the entry. See the Javadoc.To return a List of Input Streams that can be used later I used the following
it works this way