int[] t1 = { 1, 2 ,3 ,4 ,5, 6, 7, 8, 9, 10 }; System.arraycopy( t1, 1, t1, 0, 9 ); System.out.println( Arrays.toString( t1 ) );