How to convert an ArrayList to Array in Java? Example (original) (raw)

Hello guys, if you are wondering how to convert an ArrayList of objects to an array of Object in Java then you have come at the right place. In this article, I will show you a couple of ways to convert an ArrayList to Array in Java. For example, you can start with creating a new array and then copying elements from ArrayList to array, or you can also use use Stream to go through all elements of ArrayList and then collect result in an array. In this example, we will use Arrays.copyOf() method to convert a given ArrayList to array in Java. This method can be used to convert any ArrayList like ArrayList of Integer, String or any custom object to Array in Java.

Converting String ArrayList into String array is very common programming task in Java. you often need to convert Array to Array List in Java and vice-versa. In this Java program, we will How to convert String ArrayList to String array.

This is also a common programming exercise which is asked too many Java programmers in various Java related courses. It’s also worth noting that ArrayList in Java is internally backed by array and Array in Java are objects much like String which is also an Object in Java.

In this Java program, we first create an ArrayList which stores name of months as String e.g. Jan, Feb, and Mar. Later we use ArrayList toArray() method to convert ArrayList into an array.

How to convert an ArrayList to Array in Java? ArrayList of String Example

How to convert String ArrayList to Array in Java? Example

Here is full code example of Java test program which convert String ArrayList to String Array in Java. In this Java program we first create an ArrayList which stores name of month in String format and then we convert that into an String array.

Java Program to convert an ArrayList of String to an Array

package arrayListEx;

import java.util.ArrayList;
import java.util.Arrays;

public class ArrayListtoArray {

public static void main(String args[]){

//ArrayList containing string objects
ArrayList<String> aListMonth
= new ArrayList<String>();
aListMonth.add("Jan");
aListMonth.add("Feb");
aListMonth.add("mar");

/* * To convert ArrayList containing String elements to String array, use * Object[] toArray() method of ArrayList class. */

//First Step: convert ArrayList to an Object array.
Object[] objMnt = aListMonth.toArray();

//Second Step: convert Object array to String array
String[] strMnts = Arrays.copyOf(objMnt, objMnt.length, String[].class);

System.out.println("ArrayList converted to String array");

//print elements of String array
for(int i=0; i < strMnts.length; i++){
System.out.println(strMnts[i]);
}
}
}

How to convert String ArrayList to String Array in JavaThat’s all on how to convert String ArrayList to String Array in Java. This is general way of convert ArrayList to Array in Java and by using this example you can even convert an Integer ArrayList or Double ArrayList to corresponding Array in Java.

Just remember that ArrayList is not synchronized and this program can not be used in multi-threaded environment in Java. If you want to use synchronized collection, consider using Vector over ArrayList. By the way from Java 8 onwards, you can also use Stream class to convert ArrayList to array in Java as shown in this example here.

List of Java homework exercise program from java67 blog