Android 实现中在网络中取图片
2010-05-26 06:08:00 来源:WEB开发网在做android开发的时候,经常需要从网上下载一些图片,在界面上显示,一般的获取图片都会使用如下的代码:
1 //获取connection,方法略 2 conn = getURLConnection(url); 3 is = conn.getInputStream(); 4 //获取Bitmap的引用 5 Bitmap bitmap = BitmapFactory.decodeStream(is)
//获取connection,方法略conn = getURLConnection(url);is = conn.getInputStream();//获取Bitmap的引用Bitmap bitmap = BitmapFactory.decodeStream(is)
但是上面的方法在设备上或是网速不太好的情况下,会获取不了图片,推荐使用如下的方法:
代码
1 int length = (int) conn.getContentLength(); 2 if (length != -1) { 3 byte[] imgData = new byte[length]; 4 byte[] temp=new byte[512]; 5 int readLen=0; 6 int destPos=0; 7 while((readLen=is.read(temp))>0){ 8 System.arraycopy(temp, 0, imgData, destPos, readLen); 9 destPos+=readLen; 10 } 11 bitmap=BitmapFactory.decodeByteArray(imgData, 0, imgData.length); 12 } 13
//获取长度
//获取长度int length = (int) conn.getContentLength();if (length != -1) {byte[] imgData = new byte[length];byte[] temp=new byte[512];int readLen=0;int destPos=0;while((readLen=is.read(temp))>0){System.arraycopy(temp, 0, imgData, destPos, readLen);destPos+=readLen;}bitmap=BitmapFactory.decodeByteArray(imgData, 0, imgData.length);}
使用上面的方法的好处是在网速不好的情况下也会将图片数据全部下载,然后在进行解码,生成图片对象的引用,所以可以保证只要图片存在都可以下载下来。当然在读取图片数据的时候也可用java.nio.ByteBuffer,这样在读取数据前就不用知道图片数据的长度也就是图片的大小了,避免了有时候http获取的length不准确,并且不用做数组的copy工作。
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接