Collectors joining()
returns a
Collector that concatenates the input elements into a String, in encounter order.
joining
has the following syntax.
public static Collector<CharSequence,?,String> joining()
The following example shows how to use joining
.
import java.util.stream.Collectors; import java.util.stream.Stream; // w w w .j a v a 2 s . c o m public class Main { public static void main(String[] args) { Stream<String> s = Stream.of("a","b","c"); String names = s .collect(Collectors.joining()); System.out.println(names); } }
The code above generates the following result.