如何表示空的输入流
2022-09-01 09:24:15
我正在减少这样的流:InputStreams
InputStream total = input.collect(
Collectors.reducing(
empty,
Item::getInputStream,
(is1, is2) -> new SequenceInputStream(is1, is2)));
对于身份,我正在使用:InputStream
InputStream empty = new ByteArrayInputStream(new byte[0]);
这有效,但是有没有更好的方法来表示空的?InputStream