I have a 2D arraylist like the following
ArrayList<ArrayList<String>> childrenSuperList = new ArrayList<ArrayList<String>>();
...
childrenList = new ArrayList<String>();
...
childrenSuperList.add(childrenList);
How can I convert it to a simple string array like
String s[][]= {{"a","b","c"},
{"d","e","f"},
{"a","b","c"}
}