I am trying to convert an array that holds string values into integer values, I have used the parseInt
function but get an error message (java.lang.NullPointerException) at the point of execution. My code snippet is below
public int NumberOfColumns;
public int[][]CMax,CMin;
for (int i = 1; i < datas.length; i++)
{
for (int j = 1; j < NumberOfColumns+1; j++)
{
CMax[i][j] = Integer.parseInt(datas[i][j]);
System.out.println(CMax[i][j]);
System.out.println(datas[i][j]);
}
}
I have a feeling that I am getting this error message because my data array contains some characters like "-". Examples of some values stored in my data array include 0-31, 8-*, <4-7>. How can I successfully resolve this problem? Also, I need help on how to extract only the integer numbers out of these strings (e.g. 0-31). I will like to store the upper limit (e.g. 31) into a separate integer array and the lower limit(e.g. 0) into another integer array.
Below is an extract of some of the values in my data array.
<0-15> <0-7>
<0-15> <0-7>
<0-15> <0-7>
<32-47> <0-7>
<32-47> <0-7>
As pointed in the comments, the only possibilities for a NPE is one of the below ones are null.
Hopefully you can get the program corrected by looking at those.
Note: Java array index starts with 0, not 1.