リストも使用できます。
import java.util.ArrayList;
import java.util.List;
public class TestArrayList {
public static void main(String[] args) {
List<String> tempList=new ArrayList<String>();
List<String> temp1=new ArrayList<String>();
temp1.add(0, "a");
temp1.add(1, "b");
List<String> temp2=new ArrayList<String>();
temp2.add(0, "c");
temp2.add(1, "d");
List<String> temp3=new ArrayList<String>();
temp3.add(0, "e");
temp3.add(1, "f");
tempList.addAll(0, temp1);
tempList.addAll(1, temp2);
tempList.addAll(1, temp3);
for(int i=0;i<tempList.size();i++){
System.out.println(">>"+tempList.get(i));
}
}
}