Use copyOfRange, available since Java 1.6:
Arrays.copyOfRange(array, 1, array.length);
Alternatives include:
ArrayUtils.subarray(array, 1, array.length)from Apache commons-langSystem.arraycopy(...)– rather unfriendly with the long param list.