Convert ArrayList to array
Object[] toArray()
- Returns an array containing all of the elements in this list in proper sequence (from first to last element).
<T> T[] toArray(T[] a)
- Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array.
import java.util.ArrayList;
import java.util.Arrays;
public class Main {
public static void main(String args[]) {
ArrayList<String> al = new ArrayList<String>();
al.add("C");
al.add("java2s.com");
al.add("D");
al.add("F");
al.add(1, "java2s.com");
String[] strings = al.toArray(new String[al.size()]);
System.out.println(Arrays.toString(strings));
}
}
The output:
[C, java2s.com, java2s.com, D, F]
Home
Java Book
Collection
Java Book
Collection
ArrayList:
- ArrayList Class
- Create ArrayList object
- Add to ArrayList
- Clear an ArrayList
- Shallow copy of current ArrayList
- If contain a certain object
- Increases the capacity of an ArrayList
- Get/Replace element by index
- Get object for index
- Remove from ArrayList
- Get the size and trim to size
- If ArrayList is empty
- Convert ArrayList to array