If I use the java.util.zip.Deflater to compress a piece of text with a set dictionary of "apple orange banana" for the sake of argument, do I have to use this exact dictionary to decompress the text?
If I were to use a more up to date dictionary to decompress it, "apple orange banana grape", then the decompressed text is just garbage. Is it possible to update a dictionary without breaking the Inflater or do I have to implement some sort of versioning?
Thanks, Samuel.