从给定的流中读取所有的数据转成字符串
public static String readStream(InputStream is){
try {
byte[] bs = new byte[1024] ;
int b = 0 ;
ByteArrayOutputStream baos = new ByteArrayOutputStream() ;
while((b=is.read(bs))!=-1){
baos.write(bs, 0, b) ;
}
baos.close() ;
return new String(bs) ;
} catch (IOException e) {
e.printStackTrace();
}
return null ;
}
本文出自 “android笔记” 博客,请务必保留此出处http://2585211.blog.51cto.com/10044233/1669878
原文地址:http://2585211.blog.51cto.com/10044233/1669878