Possible Duplicate:
Java - easily convert array to set
Can someone help me with a version of the following expression that I can use for SET instead of ArrayList ?
ArrayList<String> items = new ArrayList<String>(Arrays.asList(comment.split(", ")));
P.S.: Comment is a large string of words split with a ","
. Need to make an individual item of the word by splitting them from the comma sections.
You use the same approach, just passing the converted array to the constructor of a Set implementation:
Set<String> items = new HashSet<String>(Arrays.asList(comment.split(", ")));
Further simplification are not possible without third-party libraries, but there are no drawbacks, since Arrays.asList
executes in constant time O(1).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With