How, in Java, do I convert an ArrayList of arrays to a two-dimensional array?
Example:
ArrayList results = new ArrayList
In this case, array.toArray() will do the trick.
array.toArray()