Wie man 2D -Array von Saiten in Java macht
String[][] twoDArray = new String[x][y]
//you must specify all but the last dimension when you declare it but
//WARNING:in order for this to be useful the demensions need to be
//completely specified
//OR you can use an array list
Difficult Dragonfly