Compressing array of integers in java - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T06:28:30Zhttp://stackoverflow.com/feeds/question/1081063http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081063/compressing-array-of-integers-in-java1Compressing array of integers in javapdeva2009-07-03T22:46:34Z2009-07-04T16:40:21Z
<p>I have some extremely large array of integers which i would like to compress.<br />
However the way to do it in java is to use something like this -</p>
<pre><code>int[] myIntArray;
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(1024);
ObjectOutputStream objectOutputStream = new ObjectOutputStream(new DeflaterOutputStream(byteArrayOutputStream));
objectOutputStream.writeObject(myIntArray);
</code></pre>
<p>Note that the int array first needs to be converted to bytes by java.
Now I know that is fast but it still needs to create a whole new byte array and scan through the entire original int array converting it to bytes and copying the value to the new byte array. </p>
<p>Is there any way to skip the byte conversion and make it compress the integers right away?</p>
http://stackoverflow.com/questions/1081063/compressing-array-of-integers-in-java/1081070#10810704Answer by Tom Hawtin - tackline for Compressing array of integers in javaTom Hawtin - tackline2009-07-03T22:50:52Z2009-07-03T22:50:52Z<p>Skip the <code>ObjectOutputStream</code> and just store the <code>int</code>s directly as four <code>byte</code>s each. <code>DataOutputStream.writeInt</code> for instance is an easy way to do it.</p>
http://stackoverflow.com/questions/1081063/compressing-array-of-integers-in-java/1081071#10810711Answer by Stephan Eggermont for Compressing array of integers in javaStephan Eggermont2009-07-03T22:52:18Z2009-07-03T22:52:18Z<p>It doesn't make sense. The compression algorithm needs bytes, not ints.</p>
http://stackoverflow.com/questions/1081063/compressing-array-of-integers-in-java/1081079#10810791Answer by Mark Bessey for Compressing array of integers in javaMark Bessey2009-07-03T22:55:26Z2009-07-03T22:55:26Z<p>Hmm. A general-purpose compression algorithm won't necessarily do a good job compressing an array of binary values, unless there's a lot of redundancy. You might do better to develop something of your own, based on what you know about the data.</p>
<p>What is it that you're actually trying to compress?</p>
http://stackoverflow.com/questions/1081063/compressing-array-of-integers-in-java/1081090#10810901Answer by Jon Skeet for Compressing array of integers in javaJon Skeet2009-07-03T23:01:45Z2009-07-03T23:01:45Z<p>You could use the <a href="http://code.google.com/apis/protocolbuffers/docs/encoding.html" rel="nofollow">representation</a> used by <a href="http://code.google.com/p/protobuf/" rel="nofollow">Protocol Buffers</a>. Each integer is represented by 1-5 bytes, depending on its magnitude.</p>
<p>Additionally, the new "packed" representation means you get basically a bit of "header" to say how big it is (and which field it's in) and then just the data. That's probably what <code>ObjectOutputStream</code> does as well, but it's a recent innovation in PB :)</p>
<p>Note that this will compress based on magnitude, <em>not</em> based on how often the integer has seen. That will dramatically affect whether it's useful for you or not.</p>
http://stackoverflow.com/questions/1081063/compressing-array-of-integers-in-java/1081102#10811020Answer by WolfmanDragon for Compressing array of integers in javaWolfmanDragon2009-07-03T23:10:37Z2009-07-03T23:10:37Z<p>A byte array is not going to save you much memory unless you make it a byte array holding unsigned ints, which is very dangerous in Java. It will replace memory overhead with extra processing time for the step checking of the code. This may be aright for data storage, but there already is data storage solution out there.<br />
Unless you are doing this for serialization purposes, I think that you are wasting your time.</p>
http://stackoverflow.com/questions/1081063/compressing-array-of-integers-in-java/1081419#10814190Answer by Reginaldo for Compressing array of integers in javaReginaldo2009-07-04T03:22:04Z2009-07-04T16:40:21Z<p>If the array of ints is guaranteed to have no duplicates, you can use a java.util.BitSet, instead.</p>
<p>As its base implementation is an array of bits, with each bit indicating if a certain integer is present or not in the BitSet, its memory usage is quite low, therefore needing less space to be serialized.</p>
http://stackoverflow.com/questions/1081063/compressing-array-of-integers-in-java/1081495#10814950Answer by brianegge for Compressing array of integers in javabrianegge2009-07-04T04:33:46Z2009-07-04T04:33:46Z<p>In your example, you are writing the compressed stream to the ByteArrayOutputStream. Your compressed array needs to exist somewhere, and if the destination is memory, then ByteArrayOutputStream is your likely choice. You could also write the stream to a socket or file. In that case, you wouldn't duplicate the stream in memory. If your array is 800MB and your running in a 1GB, you could easily write the array to a compressed file with the example you included. The change would be replacing the ByteArrayOutputStream with a file stream. </p>
<p>The ObjectOutputStream format is actually fairly efficient. It will not duplicate your array in memory, and has special code for efficiently writing arrays. </p>
<p>Are wanting to work with the compressed array in memory? Would you data lend itself well to a sparse array? Sparse array's are good when you have large gaps in your data. </p>