我正在使用Android开发人员博客中的this code来下载像this one这样的BMP文件。 BitmapFactory.decodeStream始终返回null,skia返回false。
我也尝试过使用BitmapFactory.decodeByteArray,结果相同。 框架supports BMP files,我错过了什么?
由于
编辑:博客中的代码适用于PNG和JPEG图像。
答案 0 :(得分:3)
好的,我发现here,您需要使用BufferedHttpEntity包装HttpEntity。
BufferedHttpEntity bufHttpEntity = new BufferedHttpEntity(entity);