collections to array jva code example
Example: how to convert a collection to array in java
List<String> list = new ArrayList<String>(); // Original list
String[] arr = list.toArray(new String[list.size()]); // toArray function with array to be populated by this list as an argument.