How to create a sub-array from another array? Is there a method that takes the indexes from the first array such as:
methodName(object array, int start, int
I you are using java prior to version 1.6 use System.arraycopy() instead. Or upgrade your environment.
System.arraycopy()