如题所述
遍历数组,进行转换,例如:
int[] int_arr = new int[arr.length()];
for(String strs : arr){
ar[i] = Integer.parseInt(strs);//要捕捉一下异常,因为有可能输入字母
}