将InputStream转换为Stream

将InputStream转换为Stream

本文介绍了将InputStream转换为Stream< String>给了一个Charset的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将 InputStream 转换为 Stream< String> stream 给出一个 Charset cs ,其中 stream 包含。此外,不应立即读取但仅在 stream 需要它时才会读取。

I want to convert an InputStream is into a Stream<String> stream given a Charset cs in such a way that stream consists of the lines of is. Furthermore a line of is should not be read immediately but only in case stream needs it.

推荐答案

我想你可以试试:

Stream<String> lines = new BufferedReader(new InputStreamReader(is, cs)).lines();

这篇关于将InputStream转换为Stream&lt; String&gt;给了一个Charset的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-21 02:27