有一个没有图片扩展名的网址,只要在浏览器中找到它就会下载图片。
在小提琴手中,我可以看到像这样的回应
HTTP/1.1 200 OK
Server: nginx
Date: Sun, 21 Dec 2014 08:08:53 GMT
Content-Type: image/jpg
Transfer-Encoding: chunked
Connection: keep-alive
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Content-Disposition: attachment; filename="current.jpg"
我希望能够获得“current.jpg”图像并将其添加到imageview中。 我试过
BitmapFactory.decodeStream(url.openConnection().getInputStream());
但是这会使我的imageview变成空白。