How do I make a copy of an array?
Created May 8, 2012
John Zukowski The arraycopy method of System allows you to do this but... starting in Java 6, there is a new copyOf() method added to the Arrays class that is slightly more flexible.
Created May 8, 2012