Home Java Beginners Arrayexamples Convert ArrayList to Array



Convert ArrayList to Array
Posted on: February 4, 2013 at 12:00 AM
In this section, you will learn about converting ArrayList to Array.

Convert ArrayList to Array

In this section, you will learn about converting ArrayList to Array.

Array is a data structure having fixed size which stores same type of elements in sequential manner. While ArrayList ,extends AbstractList and implements the List interface , supports dynamic array which can grow in size .

Situation comes when you have data in a ArrayList and you want to covert it into array. You can do this using toArray function as shown below :

import java.util.*;

public class ConvertListToArray {
	public static void main(String args[]) {
		List<String> statelist = new ArrayList<String>();
		
		statelist.add("UP");
		statelist.add("Bihar");
		statelist.add("Delhi");
		statelist.add("Kolkata");
		
		String [] states = statelist.toArray(new String[statelist.size()]);
		
		System.out.printf("States Array:\t\t%s", Arrays.toString(states));
	}
}

OUTPUT:

States Array:  [UP, Bihar, Delhi, Kolkata]

Related Tags for Convert ArrayList to Array:


More Tutorials from this section

Ask Questions?    Discuss: Convert ArrayList to Array  

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.