It's time to remove something from an archive. An archive is a tricky thing—you can't just go and
remove an element.
Why? Imagine we decided to invent our own text compression algorithm. After examining the source
text, we see that the phrase "being a programmer is cool" occurs often.
Archiver (part 16)
- 32
Locked
Comments (1)
- Popular
- New
- Old
You must be signed in to leave a comment
Justin Smith
26 April 2022, 11:02
One of the interesting things that apparently you cannot do, and I learned from this part, is take a ZipEntry obtained from the ZipInputStream.getNextEntry() method, and then take that ZipEntry and immediately use it in ZipOutputStream.putNextEntry().
0