Here you can find the source of copyArray(Object source, Object dest, int count)
public static void copyArray(Object source, Object dest, int count)
//package com.java2s; public class Main { /**/*from www .j a v a 2 s .com*/ * Convenience wrapper for System.arraycopy(). */ public static void copyArray(Object source, Object dest, int count) { System.arraycopy(source, 0, dest, 0, count); } }