Java自学者论坛

 找回密码
 立即注册

手机号码,快捷登录

恭喜Java自学者论坛(https://www.javazxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,会员资料板块,购买链接:点击进入购买VIP会员

JAVA高级面试进阶训练营视频教程

Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程Go语言视频零基础入门到精通Java架构师3期(课件+源码)
Java开发全终端实战租房项目视频教程SpringBoot2.X入门到高级使用教程大数据培训第六期全套视频教程深度学习(CNN RNN GAN)算法原理Java亿级流量电商系统视频教程
互联网架构师视频教程年薪50万Spark2.0从入门到精通年薪50万!人工智能学习路线教程年薪50万大数据入门到精通学习路线年薪50万机器学习入门到精通教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程MySQL入门到精通教程
查看: 463|回复: 0

[Android Pro] 关于BitmapFactory.decodeStream(is)方法无法正常解码为Bitmap对象的解决方法

[复制链接]
  • TA的每日心情
    奋斗
    2024-11-24 15:47
  • 签到天数: 804 天

    [LV.10]以坛为家III

    2053

    主题

    2111

    帖子

    72万

    积分

    管理员

    Rank: 9Rank: 9Rank: 9

    积分
    726782
    发表于 2021-6-3 06:07:13 | 显示全部楼层 |阅读模式

    在android sdk 1.6版本API帮助文档中,其中关于BitmapFactory.decodeFactory.decodeStream(InputStream is)的帮助文档是这么说明的:

     
    Bitmap android.graphics.BitmapFactory.decodeStream(InputStream is)
    
    public static Bitmap decodeStream (InputStream is) 
    Since: API Level 1 
    Decode an input stream into a bitmap. <strong>If the input stream is null, or cannot be used to decode a bitmap, the function returns null</strong>. The stream's position will be where ever it was after the encoded data was read.
    
    Parameters
    is  The input stream that holds the raw data to be decoded into a bitmap. 
    
    Returns
    The decoded bitmap, or null if the image data could not be decoded. 
    public static Bitmap bmpFromURL(URL imageURL){
        Bitmap result = null;
        try {
            HttpURLConnection connection = (HttpURLConnection)imageURL .openConnection();
            connection.setDoInput(true);
            connection.connect();
            InputStream input = connection.getInputStream();
            result = BitmapFactory.decodeStream(input);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return result;
    }

    后来调试发现,result为null,加之查看帮助文档中的黑体字,
    所以在所获得的InputStream不为空的情况下,调用BitmapFactory.decodeStream(is)方法,他也有可能无法解码成bitmap,刚开始我怀疑是本身图片地址有问题,或图片自身格式不正确,但通过浏览器查看,图片显示正常,而且,我是保存了几十张图片,但每次都会有个别几张图片无法正常显示,需要重复下载三四次,才可能保存成功。

     

    后来在一篇文章中才发现,原来这是android 1.6版本的一个bug!

     

    有牛人提出的一个解决办法,我试了试,问题解决了

    首先在原方法中改一句:

    result = BitmapFactory.decodeStream(new PatchInputStream(input));

    再创建一个类:

    public class PatchInputStream extends FilterInputStream{
    
            protected PatchInputStream(InputStream in) {
                super(in);
                // TODO Auto-generated constructor stub
            }
            
            public long skip(long n)throws IOException{
                long m=0l;
                while(m<n){
                    long _m=in.skip(n-m);
                    if(_m==0l){
                        break;
                    }
                    m+=_m;
                }
                return m;
            }
        }

    第二种方法:最终用的是这种方法

    InputStream is = httpConn.getInputStream();

      if (is == null){
           throw new RuntimeException("stream is null");
      }else{
           try {
               byte[] data=readStream(is);
               if(data!=null){
               bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
           }
      } catch (Exception e) {
           e.printStackTrace();
      }
       is.close();
      }

        /*
         * 得到图片字节流 数组大小
         * */
        public static byte[] readStream(InputStream inStream) throws Exception{      
            ByteArrayOutputStream outStream = new ByteArrayOutputStream();      
            byte[] buffer = new byte[1024];      
            int len = 0;      
            while( (len=inStream.read(buffer)) != -1){      
                outStream.write(buffer, 0, len);      
            }      
            outStream.close();      
            inStream.close();      
            return outStream.toByteArray();      
        }

     

    哎...今天够累的,签到来了1...
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|手机版|小黑屋|Java自学者论坛 ( 声明:本站文章及资料整理自互联网,用于Java自学者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

    GMT+8, 2025-1-11 23:56 , Processed in 0.063480 second(s), 27 queries .

    Powered by Discuz! X3.4

    Copyright © 2001-2021, Tencent Cloud.

    快速回复 返回顶部 返回列表