In this section, you will learn to convert Collection data to an Array.
Convert Collection to Array
In this section, you will learn to convert Collection data to an Array.
Code Description:
This program helps you in converting Collection data to an Array. Here we have taken an collection of weekdays which gets converted to Array using days.toArray method.
import java.util.*;
|
Output of the program:
C:\unique>javac CollToArr.java C:\unique>java CollToArr Sunday Monday Tuesday Wednesday Thursday Friday Saturday C:\unique> |