How to Increase the Size of an Array in Java February 10, 2020 2:02 pm Java arrays are not resizable. But we can work around this constraint with the following trick. int[] newArr = Arrays.copyOf(arr, arr.length + 1);