Home Java Java-conversion Convert Array to Vector



Convert Array to Vector
Posted on: December 18, 2008 at 12:00 AM
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. 

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.

Related Tags for Convert Array to Vector:
carrayconvertvectoriothistolearneareilsectionintorsctorisllrayeaarrtssthctoono


More Tutorials from this section

Ask Questions?    Discuss: Convert Array to Vector  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.