If the array of ints is guaranteed to have no duplicates, you can use a java.util.BitSet, which instead.
As its base implementation is very economican array of bits, insteadwith 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.
