Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


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!

share|improve this question

4 Answers

up vote 3 down vote accepted

You could do it this way:

    String[][] converted = new String[data.size()][];

    for (int i = 0; i < data.size(); i++) {
        converted[i] = data.get(i).toArray(new String[data.get(i).size()]);
    }
share|improve this answer

First thing that comes to mind would be (assuming all second-dimension ArrayLists are the same size):

ArrayList<ArrayList<String>> data = ...;
String[][] converted = new String[data.size()][data.get(0).size()];
for (int i = 0; i < data.size(); i++)
    converted[i] = data.get(i).toArray(new String[data.get(i).size()]);
share|improve this answer

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]

share|improve this answer
String[][] converted = new String[data.size()][];
for (int i = 0; i < data.size(); i++) {
    converted[i] = data.get(i).toArray(new String[0]);
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.