码迷,mamicode.com
首页 > 其他好文 > 详细

InputStream,String相互转化

时间:2016-08-01 10:22:37      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

String --> InputStream

InputStream String2InputStream(String str){
   ByteArrayInputStream stream = new ByteArrayInputStream(str.getBytes());
   return stream;
}

InputStream --> String

String inputStream2String(InputStream is){
   BufferedReader in = new BufferedReader(new InputStreamReader(is));
   StringBuffer buffer = new StringBuffer();
   String line = "";
   while ((line = in.readLine()) != null){
     buffer.append(line);
   }
   return buffer.toString();
}

 

InputStream,String相互转化

标签:

原文地址:http://www.cnblogs.com/zeze/p/5724642.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!