string array to int array java code example

Example 1: java int to int array

int number = 110101; 
String temp = Integer.toString(number);
int[] numbers = new int[temp.length()];
for (int i = 0; i < temp.length(); i++) {
    numbers[i] = temp.charAt(i) - '0';
}

Example 2: java convert string to int array

import java.util.Arrays;
public class StringToIntegerArray {
   public static void main(String args[]) {
      String [] str = {"123", "345", "437", "894"};
      int size = str.length;
      int [] arr = new int [size];
      for(int i=0; i<size; i++) {
         arr[i] = Integer.parseInt(str[i]);
      }
      System.out.println(Arrays.toString(arr));
   }
}

Example 3: convert string to int array

char c = '2';
int asInt = c - '0';
//asInt = 2

Example 4: java convert string array to int array

int[] intArray = convertStringArrayToIntArray(numbers.split(", "));