In this section, you will learn to convert Vector to an Array.
Convert Vector to Array
In this section, you will learn to convert Vector to an Array.
Code Description:
This program helps you in converting Vector to an Array.
Here we have taken a Vector
v.add("Java, is, a, wonderful, language");
which gets converted to an Array.
import java.util.Arrays;
|
Output of the program:
C:\unique>javac VectorToArr.java C:\unique>java VectorToArr [Java, is, a, wonderful, language] C:\unique> |