Hello again, > By the way, using clone() seams better than Arrays.copyOf() here. > > byte[] b = ba.clone();
Why? I remember that I've seen some benchmarks where array.clone() was way slower than creating a new array and using System.arraycopy() (which is exactly what copyOf does). However this may have changed ;) lg Clemens
