2.9.Copying Arrays
You can quickly move data from one array to another with the arraycopy method of the System class:
public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length)
The two Object arguments specify the arrays to copy from and to. The three int arguments specify the source array starting position, the destination array starting position, and the number of array elements to copy.
The program ArrayCopyDemo spells “decaffeinated” with a char array. It copies a subsequence of array components into a second array using arraycopy:
class ArrayCopyDemo { public static void main(String[] args) { char[ ] copyFrom = { 'd', 'e', 'c', 'a', 'f', 'f', 'e', 'i', 'n', 'a', 't', 'e', 'd' }; char[ ] copyTo = new char[7]; System.arraycopy(copyFrom, 2, copyTo, 0, 7); System.out.println(new String(copyTo)); } }
The program’s output is:
caffeine