android http通信(一) HttpURLConntection举例:从网络上下载图片public static byte[] readStreamtoBytes(
android http通信(一) HttpURLConntection
举例:从网络上下载图片
public static byte[] readStreamtoBytes(InputStream instream) throws IOException{ ByteArrayOutputStream outstream =new ByteArrayOutputStream(); int len=-1; byte[] b = new byte[1024];while((len = instream.read(b)) != -1){ outstream.write(b, 0, len); } outstream.flush(); outstream.close(); instream.close(); return outstream.toByteArray(); }?
