Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Array Exercises: Convert an ArrayList to an array

Java Array: Exercise-21 with Solution

Write a Java program to convert an ArrayList to an array.

Pictorial Presentation:

Java Array Exercises: Convert an ArrayList to an array

Sample Solution:

Java Code :

import java.util.ArrayList;
  import java.util.Arrays;
  public class Exercise21 {
  public static void  main(String[] args)
  {
  ArrayList<String> list = new ArrayList<String>();

  list.add("Python");
 
  list.add("Java");
 
  list.add("PHP");
  
  list.add("C#");
 
  list.add("C++");
  
  list.add("Perl");
 
  String[]  my_array = new String[list.size()];
  
  list.toArray(my_array);
  
  for (String  string : my_array)
  {
  System.out.println(string);
  }
  }
  }

Sample Output:

Python                                                                                                
Java                                                                                                
PHP                                                                                                
C#                                                                                                
C++                                                                                                
Perl 

Flowchart:

Flowchart: Java exercises: Convert an ArrayList to an array

Visualize Java code execution (Python Tutor):


Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to convert an array to ArrayList.
Next: Write a Java program to find all pairs of elements in an array whose sum is equal to a specified number.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe