I'm unfamiliar with Java, but there should be a way to access any cell in the array with bracketed arguments. For example, you have an array variable called my2dArray. You could access individual cells with "[]". Like so:
my2dArray[12][10];
.. would give you the contents of the cell in the 13th row and 11th column (maybe 12th and 10; are indexes zero-based like in C?).
Edit: I type slowly.