Skip to content

Instantly share code, notes, and snippets.

@joseporiol
Created March 1, 2014 16:01
Show Gist options
  • Save joseporiol/9291938 to your computer and use it in GitHub Desktop.
Save joseporiol/9291938 to your computer and use it in GitHub Desktop.
Convert ArrayList to String[]
ArrayList<String> stock_list = new ArrayList<String>();
stock_list.add("stock1");
stock_list.add("stock2");
String[] stockArr = new String[stock_list.size()];
stockArr = stock_list.toArray(stockArr);
for(String s : stockArr)
System.out.println(s);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment