What is the difference between GZIPOutputStream and DeflaterOutputStream?

Viewed 8994

GZIPOutputStream is just a subclass of DeflaterOutputStream but both can be instantiated. When do I use one over the other? Is the compression the same?

3 Answers
Related