<返回更多

Java如何将InputStream转换为字符串?

2020-09-08    
加入收藏

Talk is cheap, Show me the code. -- by: Linus Torvalds

方式一、

JAVA8+ Stream API

String result = new BufferedReader(new InputStreamReader(inputStream))
    .lines() // 按行读取
    .collect(Collectors.joining("n")); // 合并行为字符串

方式二、

使用commons-io

String result = IOUtils.toString(inputStream, "UTF-8");

方式三、

使用Guava

String result = CharStreams.toString(new InputStreamReader(inputStream, "UTF-8"));

方式四、

使用ByteArrayOutputStream

BufferedInputStream bis = new BufferedInputStream(inputStream);
ByteArrayOutputStream buf = new ByteArrayOutputStream();
int result = bis.read();
while(result != -1) {
    buf.write((byte) result);
    result = bis.read();}return buf.toString("UTF-8");
声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>