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
If your platform matrix supports Java 7 then you can use like below
List> myList = new ArrayList<>();