I'm working on a project where i need to convert either an ArrayList or and Array to an String array. I need each word/string to convert to seperate strings.
Something like this:
public ArrayList<String> arrList2 = new ArrayList<String>();
and then convert it and past into
public String arrList4 [] = new String [250];
Hope this is detaild enough so you get what i want.