Android代码(Handler的运用),HttpURLConnection的应用,将url图片地址转换成图片。

时间:2023-12-15 23:31:02


1 布局文件,

<LinearLayout 秒, 抛异常

conn.connect();      // 开始链接

int responseCode = conn.getResponseCode(); // 得到服务器的响应码

if(responseCode == 200) {

// 访问成功

InputStream is = conn.getInputStream();   // 获得服务器返回的流数据

Bitmap bitmap = BitmapFactory.decodeStream(is); // 根据 流数据 创建一个bitmap位图对象

return bitmap;

} else {

Log.i(TAG, "访问失败: responseCode = " + responseCode);

}

} catch (Exception e) {

e.printStackTrace();

} finally {

if(conn != null) {

conn.disconnect();       // 断开连接

}

}

return null;

}

}