public static int[] strArrayToIntArray(String[] a){
int[] b = new int[a.length];
for (int i = 0; i < a.length; i++) {
b[i] = Integer.parseInt(a[i]);
}
return b;
}
This is a simple function, that should help you. You can use him like this:
int[] arr = strArrayToIntArray(/*YOUR STR ARRAY*/);