缓存网络图片 以及流接受图片

本文深入探讨了在SD卡上保存图像的方法,并介绍了如何使用SoftReferences优化大型图片的内存管理。通过创建图像缓存,实现高效地在SD卡与内存间加载和保存图像,确保应用性能的同时节省资源。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1. 保存在sdcard 首先不要忘记权限

 //First create a new URL object  
URL url
= new URL("http://www.google.co.uk/logos/holiday09_2.gif") 
 
//Next create a file, the example below will save to the SDCARD using JPEG format 
File file = new File("/sdcard/example.jpg"); 
 
//Next create a Bitmap object and download the image to bitmap 
Bitmap bitmap = BitmapFactory.decodeStream(url.openStream()); 
 
//Finally compress the bitmap, saving to the file previously created 
bitmap
.compress(CompressFormat.JPEG, 100, new FileOutputStream(file)); 

 

2.使用Collection(HashMap,List etc.)  你必须使用java.lang.ref.SoftReference specifically 如果你的图片很大

HashMap<String,SoftReference<Bitmap>> imageCache = 
       
new HashMap<String,SoftReference<Bitmap>>(); 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值