JAR compression level has no effect in Ant - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T14:28:39Zhttp://stackoverflow.com/feeds/question/605354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/605354/jar-compression-level-has-no-effect-in-ant1JAR compression level has no effect in Antserg5552009-03-03T06:39:34Z2009-03-03T07:09:33Z
<p>When I run the following task for Ant project from Eclipse 3.4:</p>
<pre><code><jar destfile="test.war" level="9">
...
</jar>
</code></pre>
<p>seems like compression level has no effect. It says that compression level is supported starting from ant 1.7 and in the Manifest.mf it says I have 1.7.0</p>
<pre><code>Ant-Version: Apache Ant 1.7.0
</code></pre>
<p>Any ideas?</p>
<p>Thanks.</p>
<p><strong>UPDATE</strong>: Actually it is compressing, I just didn't notice it. Compression level 9 gives 1Kb advantage in size over default for 650kb war, which makes it pretty much worthless. This is strange because using winzip I can get 450kb file using "normal" compression level and 400kb using "maximum".</p>
<p><strong>UPDATE2</strong>: My bad, I was compressing sources instead of classes. Maximum compression level in winzip doesn't give any advantages in size either. I probably should go to sleep already :)</p>
<p>Sorry for false alarm, you can delete/close this.</p>
http://stackoverflow.com/questions/605354/jar-compression-level-has-no-effect-in-ant/605363#6053631Answer by TofuBeer for JAR compression level has no effect in AntTofuBeer2009-03-03T06:43:19Z2009-03-03T06:43:19Z<p>Do you have compress="true" in there too?</p>
<p>Also, you may really want to think about not compressing the file. If it is compressed it cannot be opened as a memory mapped file. If it is a memory mapped file it is significantly faster to access. </p>
<p>It is up to the VM to decide if it will open it is a memory mapped file or not (so it is not a guarantee that it will be faster, but it is a guarantee that it can not ever do it if it is compressed).</p>