Hi!
Ich versuche grade aus einer Textbox einen Wert in ein Integer umzuwandeln und in ein Zweidimensionales Array zu speichern... Ich weiss allerding nicht was falsch läuft...
Kann mir jemand einen Tip geben?
Gruß manuche
Ich versuche grade aus einer Textbox einen Wert in ein Integer umzuwandeln und in ein Zweidimensionales Array zu speichern... Ich weiss allerding nicht was falsch läuft...
Kann mir jemand einen Tip geben?
Code:
//Textboxen Array
private TextField [][] matrix = {
{textField1, textField2, textField3},
{textField4, textField5, textField6},
{textField7, textField8, textField9},
};
private int [][] werte = new int[2][2];
//Schleife in der der Integerwert weggespeichert werden soll
String text = new String();
for(int x = 0; x <= 2; x++){
for (int y = 0; y <= 2; y++){
text = matrix[x][y].getText();
if (text.equals("")){
werte[x][y] = Integer.valueOf(text).intValue();
matrix[x][y].setText("X");
}else{
werte[x][y] = Integer.valueOf(text).intValue();
matrix[x][y].setText("A");
}
}
}
Gruß manuche