Ver originalint[] src = new int[]{1,4,2,6};int[] dest = new int[2]; System.arraycopy( src, 0, dest, 0, 2 );