java accessing lists in a list<list> code example

Example 1: Lists inside lists in java

public class GuiTest {

	
	public static void main(String[] args) {
		List<List<Integer>> MainList = new ArrayList<List<Integer>>();
		Random NewRandomNumber = new Random();
		
		for (int i = 0; i < 10; i++) {
			List<Integer> SecondList = new ArrayList<Integer>();
			MainList.add(SecondList);
			for (int i2 = 0; i2 < 10; i2++) {
				SecondList.add(NewRandomNumber.nextInt(6));
			}
		}

Example 2: java list of lists

ArrayList<ArrayList<String>> listOLists = new ArrayList<ArrayList<String>>();
ArrayList<String> singleList = new ArrayList<String>();
singleList.add("hello");
singleList.add("world");
listOLists.add(singleList);

ArrayList<String> anotherList = new ArrayList<String>();
anotherList.add("this is another list");
listOLists.add(anotherList);