Can we somehow split stream into substreams with no more than N elements in Java? For example
Stream<Integer> s = Stream.of(1,2,3,4,5);
Stream<Stream<Integer>> separated = split(s, 2);
// after that separated should contain stream(1,2), stream(3,4), stream(5)
splitting by two streams solution is correct only for 2 streams, the same for N streams will be very ugly and write-only.
You can't split a Stream
into 2 or more Streas
s easily and directly. The only way the procedural one consisting of collecting the elements to the List
by the couples and mapping them back to Stream
again:
Stream<Integer> s = Stream.of(1,2,3,4,5);
List<Integer> list = s.collect(Collectors.toList());
int size = list.size();
List<List<Integer>> temp = new ArrayList<>();
List<Integer> temp2 = new ArrayList<>();
int index = 0;
for (int i=0; i<size; i++) {
temp2.add(list.get(i));
if (i%2!=0) {
temp.add(temp2);
temp2 = new ArrayList<>();
}
if (i == size - 1) {
temp.add(temp2);
}
}
Stream<Stream<Integer>> stream = temp.stream().map(i -> i.stream());
As you see it's a really long way an not worth. Wouldn't be better to store the pairs in the List
rather than Stream
? The java-stream API is not used for data storage but their processing.