代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
异步的图片加载
作者:
fuweiping
/ 发布于
2012/11/27
/
671
package com.ejoy.adpter; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.lang.ref.SoftReference; import java.net.URL; import java.net.URLConnection; import java.util.HashMap; import com.ejoy.utils.BitmapUtils; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.Handler; import android.os.Message; import android.widget.ImageView; public class AsyncBitmapLoader { /** * 内存图片软引用缓冲 */ private HashMap<String, SoftReference<Bitmap>> imageCache = null; public AsyncBitmapLoader() { imageCache = new HashMap<String, SoftReference<Bitmap>>(); } protected String GetDatabasePath(String name) { String EXTERN_PATH = null; if (com.ejoy.FileServer.SDCardOperation.CanSdCardUse()) { EXTERN_PATH = android.os.Environment.getExternalStorageDirectory() .getAbsolutePath() + "/ejoy/cache/"; File f = new File(EXTERN_PATH); if (!f.exists()) { f.mkdirs(); } } if (name.trim() == "") { return EXTERN_PATH; } else { return EXTERN_PATH + name; } } public Bitmap loadBitmap(final ImageView imageView, final String imageURL, final ImageCallBack imageCallBack) { final Handler handler = new Handler() { @Override public void handleMessage(Message msg) { imageCallBack.imageLoad(imageView, (Bitmap) msg.obj); } }; if (imageURL.trim() == "") { handler.sendMessage(handler.obtainMessage(0, null)); } final String FileName = imageURL .substring(imageURL.lastIndexOf("/") + 1); // 在内存缓存中,则返回Bitmap对象 if (imageCache.containsKey(imageURL)) { SoftReference<Bitmap> reference = imageCache.get(imageURL); Bitmap bitmap = reference.get(); if (bitmap != null) { handler.sendMessage(handler.obtainMessage(0, bitmap)); return bitmap; } } else { /** * 加上一个对本地缓存的查找 */ File cacheDir = new File(GetDatabasePath("")); File[] cacheFiles = cacheDir.listFiles(); int i = 0; int j = cacheFiles.length; for (; i < j; i++) { if (FileName.equals(cacheFiles[i].getName()) && cacheFiles[i].length() > 0) { break; } } if (i < cacheFiles.length) { String path = GetDatabasePath(FileName); Bitmap bitmap; try { bitmap = BitmapUtils.getBitmapByPath(path, BitmapUtils.getOptions(path), 90, 90); } catch (FileNotFoundException e) { bitmap = null; } handler.sendMessage(handler.obtainMessage(0, bitmap)); return bitmap; } } // 如果不在内存缓存中,也不在本地(被jvm回收掉),则开启线程下载图片 new Thread() { @Override public void run() { URL url; Bitmap bitmap = null; try { if (imageURL.trim() != "" && FileName.trim() != "") { url = new URL(imageURL); URLConnection conn = url.openConnection(); conn.setDoInput(true); conn.connect(); InputStream bitmapIs = conn.getInputStream(); bitmap = BitmapFactory.decodeStream(bitmapIs); imageCache.put(imageURL, new SoftReference<Bitmap>( bitmap)); File bitmapFile = new File(GetDatabasePath(FileName)); if (!bitmapFile.isDirectory()) { if (!bitmapFile.exists()) { bitmapFile.createNewFile(); } else { if (bitmapFile.length() == 0) { bitmapFile.delete(); bitmapFile.createNewFile(); } } FileOutputStream fos; try { fos = new FileOutputStream(bitmapFile); if (fos != null) { bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos); fos.close(); } } catch (FileNotFoundException e) { } catch (IOException e) { e.printStackTrace(); } } bitmapIs.close(); } else { } } catch (FileNotFoundException e) { } catch (Exception e1) { e1.printStackTrace(); } Message msg = handler.obtainMessage(0, bitmap); handler.sendMessage(msg); } }.start(); return null; } /** * 回调接口 * * @author onerain * */ public interface ImageCallBack { public void imageLoad(ImageView imageView, Bitmap bitmap); } }
试试其它关键字
图片加载
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
fuweiping
贡献的其它代码
(
9
)
.
android 定位
.
安卓做旋转动画
.
android Listview下拉刷新
.
仿iphone的左右开关
.
异步的图片加载
.
Android 验证手机号码
.
仿快拍二维码的手动输码页面
.
从电脑版页面获取新闻正文html代码
.
android app首次进入的时候进行提醒操作
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3