Lets see how to convert List to Array.
Convert List to Array
Lets see how to convert List to Array.
Code Description:
In this program we have taken a List of type String as shown below. For this we
have used Mylist.add to add the contents of the list as shown below. Then we
have used a method Mylist.toArray
to convert the List to Array.
Here is the code of this program:
import java.util.*;
|
Output of the program:
C:\unique>javac ListToArr.java C:\unique>java ListToArr Javaisawonderfullanguage C:\unique> |