我试图从 http 响应中获取图像,但无法将流转换为位图。请让我知道,我在这里缺少什么。
仅供参考 - 图像内容作为原始二进制及其 jpeg 图像接收。
遵循的程序:
- 制作 HttpRequest。
- 作为响应检查 200 -> 获取 httpentity 内容。
- 使用 BitMap 工厂将流转换为位图。
- 将位图设置为 imageview
在 AsyncTask 的 postExecute 中执行此操作
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet(endpoint);
// Adding Headers ..
// Execute the request
HttpResponse response;
try {
response = httpclient.execute(httpget);
if (response.getStatusLine().getStatusCode() == 200) {
// Get hold of the response entity
HttpEntity entity = response.getEntity();
if (entity != null) {
InputStream instream = entity.getContent();
return instream;
// instream.close();
}
}
}
在 AsyncTask 的 postExecute 中执行此操作
if (null != instream) {
Bitmap bm = BitmapFactory.decodeStream(instream);
if(null == bm){
Toast toast = Toast.makeText(getApplicationContext(),
"Bitmap is NULL", Toast.LENGTH_SHORT);
toast.show();
}
ImageView view = (ImageView) findViewById(R.id.picture_frame);
view.setImageBitmap(bm);
}
提前致谢。