Can you please advice how to convert ArrayList of ArrayLists to simple 2d array in Java in the best way? E.g. I have
ArrayList<ArrayList<String>> data = ...;
and want to obrain:
String[][] converted = ?;
Thanks a lot!
|
and want to obrain:
Thanks a lot! |
|||
|
|
|
You could do it this way:
|
|||
|
|
|
First thing that comes to mind would be (assuming all second-dimension ArrayLists are the same size):
|
|||
|
|
|
http://docs.oracle.com/javase/1.5.0/docs/api/java/util/ArrayList.html Loop through the content of data, then invoke data.get(someIndex).toArray() and assign that to converted[someIndex] |
|||
|
|
|
|||
|
|