Convert Array to Vector

In this section, you will learn to convert an Array to Vector.

Convert Array to Vector

In this section, you will learn to convert an Array to Vector.

Convert Array to Vector

Convert Array to Vector

     

In this section, you will learn to convert an Array to Vector. 

Code Description:

This program helps you in converting an Array into a Vector. Here we have taken an array of data which gets converted to data of Vector using Array.asList method. We have also used Enumeration to get the next element of the data.

import java.util.Arrays;
import java.util.Calendar;
import java.util.Date;
import java.util.Enumeration;
import java.util.List;
import java.util.Vector;
import java.util.*;
import java.io.*;

/** Convert an Array to a Vector. */
public class ArrToVector {
  public static void main(String[] args) {
  Object[] Greet = {"Tamana Aggrawal"new Date()};
  Vector<Object> v = new Vector<Object>(Arrays.asList(Greet));
  Enumeration e = v.elements();
  while (e.hasMoreElements()) {
  System.out.println(e.nextElement());
  System.out.println();
  }
  }
}

Output of the program: 

C:\unique>javac ArrToVector.java

C:\unique>java ArrToVector
Tamana Aggrawal

Mon Jul 30 17:32:03 GMT+05:30 2007

C:\unique>

Download this example.