b=(Button)this.findViewById(R.id.b);//图片浏览按钮
et=(EditText)this.findViewById(R.id.et);//图片网址编辑框
iv=(ImageView)this.findViewById(R.id.iv);//图片显示控件
b.setOnClickListener//为图片浏览按钮添加监听器
这次的HttpURLConnection仅针对Http连接,效率胜于URLConnection。new URL对象将网址传入
HttpURLConnection conn = (HttpURLConnection) imageUrl.openConnection();// 取得连接
conn.connect();
InputStream is = conn.getInputStream();//取得返回的InputStream
bitmap = BitmapFactory.decodeStream(is);//将InputStream变成Bitmap
is.close();//关闭InputStream
1