I\'ve heard of using a two dimensional array like this :
String[][] strArr;
But is there any way of doing this with a list?
Maybe s
A 2d array is simply an array of arrays. The analog for lists is simply a List of Lists.
List
ArrayList> myList = new ArrayList>();
I'll admit, it's not a pretty solution, especially if you go for a 3 or more dimensional structure.