This is a two part question, really.

Preface: I use WinRAR to compress files. It gives you the option of only compressing certain files. I can filter by file extension so that, say, JPEG files are not compressed, while other files are.

  1. Can this be done with ZIP files in general, or is it only a WinRAR/RAR format capability?

  2. If it is possible do to with the ZIP format, is there a way I can do that using Java's ZipOutputStream class? Or, perhaps using some other ZIP Java implementation?

To clarify, I would like to tell my ZipOutputStream to only compress files with a particular extension. Is this possible?

Thanks

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Yes, you can do it with ZipOutputStream. Before each file (or when you want to change it) call setLevel with a constant from Deflater, in your case Deflater.NO_COMPRESSION. The documentation on this should be clearer.

You could easily make a subclass of ZipOutputStream that overrides putNextEntry to handle this logic.

link|improve this answer
lol - I should have just Googled a little better. Thanks! – Scott Sep 28 '11 at 5:12
feedback

ZipOutputStream has methods to control if subsequent entries are to be deflated, and with which compression level.

This can also be specified on the ZipEntry level (where it takes precedence).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.