I have an array that contains number value and a String. I want convert that array into double. I have tried this:
int tableStringLength=tableString.length;
double [][]tableDouble= null;
for(int i=0; i<tableStringLength; i++) {
for(int j=0; j<tableStringLength; j++) {
tableDouble[i][j]= Double.parseDouble(tableString[i][j]);
}
}
but it returns nothing, not null or zero when I try to display in screen.