把流转换成字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了把流转换成字符串相关的知识,希望对你有一定的参考价值。
把流转换成字符串
public static String convertStreamToString(InputStream is) { BufferedReader reader = null; try { reader = new BufferedReader(new InputStreamReader(is, "UTF-8")); } catch (UnsupportedEncodingException e1) { e1.printStackTrace(); } StringBuilder sb = new StringBuilder(); String line = null; try { while ((line = reader.readLine()) != null) { sb.append(line + "\n"); } } catch (IOException e) { e.printStackTrace(); } finally { try { is.close(); } catch (IOException e) { e.printStackTrace(); } } return sb.toString(); }
以上是关于把流转换成字符串的主要内容,如果未能解决你的问题,请参考以下文章
75. InputStreamReader和OutputStreamWriter(转换流--字节流转换成字符流)