why not try the static method array copy in the system class just give the source array src start position , destination array , destination start position and the length
System.arraycopy(src, srcPos, dest, destPos, length);
byte [] dest= new byte [6000];
System.arraycopy(src, 0, dest, 0, 6000);