Languages
[Edit]
EN

Java - convert array to LinkedHashSet

4 points
Created by:
Abel-Burks
698

In this short article we are going to show how to convert array to LinkedHashSet in Java.

Following steps are necessary:

  1. convert array to list with Arrays.asArray() function,
  2. create LinkedHashSet with constructor from the list.

Quick solution:

new LinkedHashSet<String>(Arrays.asList(array));

 Practical example:

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

public class ArrayToLinkedHashSetExample {

    public static void main(String[] args) {

        String[] array = {"blue", "green", "red"};
        Set<String> set = new LinkedHashSet<>(Arrays.asList(array));
        
        System.out.println("LinkedHashSet: " + set);
    }
}

Output:

LinkedHashSet: [blue, green, red]

 

Alternative titles

  1. Java - convert array of string to LinkedHashSet
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Java - Arrays (popular problems)

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join