How to change a collection to an array?
SolutionFollowing example shows how to convert a collection to an array by using list.add() and list.toArray() method of Java Util class.
import java.util.*; public class CollectionToArray{ public static void main(String[] args){ List<String> list = new ArrayList<String>(); list.add("This "); list.add("is "); list.add("a "); list.add("good "); list.add("program."); String[] s1 = list.toArray(new String[0]); for(int i = 0; i< s1.length; ++i) { String contents = s1[i]; System.out.print(contents); } } }Result
The above code sample will produce the following result.
This is a good program.
java_collections.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4