Copy all elements of LinkedHashSet to an Object Array

 

import java.util.Arrays;
import java.util.LinkedHashSet;

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

    LinkedHashSet linkedHashSet = new LinkedHashSet();

    linkedHashSet.add("1");
    linkedHashSet.add("2");
    linkedHashSet.add("java2s.com");

    Object[] objArray = linkedHashSet.toArray();
    System.out.println(Arrays.toString(objArray));
  }
}

The output:


[1, 2, java2s.com]
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.