Hi Guys
I would like to add an array of strings into an ArrayList, which i have implemented by using the following code:-
String[] strReturnWords = getInput2(line);
List.add(strReturnWords);
strReturnWords returns an array of Strings.
How do i retrieve the array of strings from the ArrayList. I have tried
String[i] strString = List.toString();
Am i doing this correctly, are their any other ways??
Many thanks
Jason