-
Hello, everyone! I try to parse the excel files. I want to get all worksheets as a ZipEntry, store them separately and then read from the used stream particular entries using the following code:
but it doesn't work. It works if you iterate through the whole archive. I don't want to do this every time when I need to get access to a particular entity. How I can solve this issue? |
Beta Was this translation helpful? Give feedback.
Answered by
piksel
Dec 7, 2021
Replies: 1 comment 3 replies
-
Use |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
sovetkin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use
ZipFile
instead ofZipInputStream
for random access.