Copy value to a List

static<T> void copy(List<? super T> dest, List<? extends T> src)
Copies all of the elements from one list into another.

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

public class Main {
  public static void main(String args[]) throws Exception {
    List list1 = Arrays.asList(new String[] { "U", "C" });
    List list2 = Arrays.asList(new String[] { "1", "2", "3" });

    System.out.println(list1);
    System.out.println(list2);

    Collections.copy(list2, list1);
    System.out.println(list1);
    System.out.println(list2);
  }
}

The output:


[U, C]
[1, 2, 3]
[U, C]
[U, C, 3]

Copy Elements of ArrayList to Vector

 

import java.util.ArrayList;
import java.util.Collections;
import java.util.Vector;

public class Main {
  public static void main(String[] args) {

    ArrayList arrayList = new ArrayList();

    arrayList.add("1");
    arrayList.add("2");
    arrayList.add("3");
    arrayList.add("java2s.com");

    Vector v = new Vector();
    v.add("A");
    v.add("B");
    v.add("C");
    v.add("D");
    
    System.out.println("Before copy, Vector Contains : " + v);
    Collections.copy(v, arrayList);
    System.out.println("After Copy, Vector Contains : " + v);
  }
}

 
Home 
  Java Book 
    Collection  

Collections:
  1. Collections
  2. Get empty collection from Collections
  3. Do binary search
  4. Copy value to a List
  5. Get Enumeration from collection, create list from Enumeration
  6. Fill a list
  7. Get the max and min value from a Collection
  8. Fill n Copy object to a list
  9. Replace value in a list
  10. Reverse a list
  11. Get comparator in reverse order
  12. Rotate and shuffle a list
  13. Create singleton
  14. Sort a list
  15. Swap element in a list
  16. Get a synchronized collection
  17. Return an unmodifiable view of collections