Source Code : Resize an array, System.arraycopy()
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
Resize an array, System.arraycopy()
import java.lang.reflect.Array;
public class Main {
public static void main(String arg[]) {
String[] s = (String[]) expand(new String[20]);
System.out.println(s.length);
}
public static Object expand(Object a) {
Class cl = a.getClass();
if (!cl.isArray())
return a;
int length = Array.getLength(a);
int newLength = 1000;
Class componentType = a.getClass().getComponentType();
Object newArray = Array.newInstance(componentType, newLength);
System.arraycopy(a, 0, newArray, 0, length);
return newArray;
}
}
Thank with us