前言:前幾天做了個(gè)小功能,就是加載圖片需要帶cookie裂允,總之接口就是很傻比很令人費(fèi)解,哎哥艇,**也就這樣了吧>唷?一切都是那么的傻逼就對(duì)了貌踏。因?yàn)轫?xiàng)目里我用的是張洪洋的封裝okhttp十饥,所以自己借鑒了幾篇文章,整理了一個(gè)小框架祖乳,總共5個(gè)類逗堵,如下。
先上個(gè)使用方法吧眷昆,看,就是這么簡(jiǎn)單蜒秤。
/*fangyc 因?yàn)橐獛ookie,所以統(tǒng)一使用okhttp*/
OkBitmap.okDisPlay(imageView, data);
1亚斋、內(nèi)存緩存類
/**
* 三級(jí)緩存之內(nèi)存緩存
*/
public class MemoryCacheUtils {
// private HashMap<String,Bitmap> mMemoryCache=new HashMap<>();//1.因?yàn)閺?qiáng)引用,容易造成內(nèi)存溢出作媚,所以考慮使用下面弱引用的方法
// private HashMap<String, SoftReference<Bitmap>> mMemoryCache = new HashMap<>();//2.因?yàn)樵贏ndroid2.3+后,系統(tǒng)會(huì)優(yōu)先考慮回收弱引用對(duì)象,官方提出使用LruCache
private LruCache<String,Bitmap> mMemoryCache;
public MemoryCacheUtils(){
final long maxMemory = Runtime.getRuntime().maxMemory()/8;//得到手機(jī)最大允許內(nèi)存的1/8,即超過(guò)指定內(nèi)存,則開(kāi)始回收
//需要傳入允許的內(nèi)存最大值,虛擬機(jī)默認(rèn)內(nèi)存16M,真機(jī)不一定相同
mMemoryCache=new LruCache<String,Bitmap>((int) maxMemory){
//用于計(jì)算每個(gè)條目的大小
@Override
protected int sizeOf(String key, Bitmap value) {
int byteCount = value.getByteCount();
Log.i("MemoryCacheUtils", "每個(gè)Bitmap大小:" + byteCount + "每個(gè)程序最大內(nèi)存" + maxMemory);
return byteCount;
}
};
}
/**
* 從內(nèi)存中讀圖片
* @param url
*/
public Bitmap getBitmapFromMemory(String url) {
//Bitmap bitmap = mMemoryCache.get(url);//1.強(qiáng)引用方法
/*2.弱引用方法
SoftReference<Bitmap> bitmapSoftReference = mMemoryCache.get(url);
if (bitmapSoftReference != null) {
Bitmap bitmap = bitmapSoftReference.get();
return bitmap;
}
*/
Bitmap bitmap = mMemoryCache.get(url);
return bitmap;
}
/**
* 往內(nèi)存中寫(xiě)圖片
* @param url
* @param bitmap
*/
public void setBitmapToMemory(String url, Bitmap bitmap) {
//mMemoryCache.put(url, bitmap);//1.強(qiáng)引用方法
/*2.弱引用方法
mMemoryCache.put(url, new SoftReference<>(bitmap));
*/
mMemoryCache.put(url,bitmap);
}
}
//作者:wanbo_
// 鏈接:http://www.reibang.com/p/2cd59a79ed4a
// 來(lái)源:簡(jiǎn)書(shū)
// 著作權(quán)歸作者所有帅刊。商業(yè)轉(zhuǎn)載請(qǐng)聯(lián)系作者獲得授權(quán)纸泡,非商業(yè)轉(zhuǎn)載請(qǐng)注明出處。
2赖瞒、本地緩存類
/**
* 三級(jí)緩存之本地緩存
*/
public class LocalCacheUtils {
private static final String CACHE_PATH= Environment.getExternalStorageDirectory().getAbsolutePath()+"/WerbNews";
/**
* 從本地讀取圖片
* @param url
*/
public Bitmap getBitmapFromLocal(String url){
String fileName = null;//把圖片的url當(dāng)做文件名,并進(jìn)行MD5加密
try {
fileName = MD5Encoder.encode(url);
File file=new File(CACHE_PATH,fileName);
Bitmap bitmap = BitmapFactory.decodeStream(new FileInputStream(file));
return bitmap;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
/**
* 從網(wǎng)絡(luò)獲取圖片后,保存至本地緩存
* @param url
* @param bitmap
*/
public void setBitmapToLocal(String url,Bitmap bitmap){
try {
String fileName = MD5Encoder.encode(url);//把圖片的url當(dāng)做文件名,并進(jìn)行MD5加密
File file=new File(CACHE_PATH,fileName);
//通過(guò)得到文件的父文件,判斷父文件是否存在
File parentFile = file.getParentFile();
if (!parentFile.exists()){
parentFile.mkdirs();
}
//把圖片保存至本地
bitmap.compress(Bitmap.CompressFormat.JPEG,100,new FileOutputStream(file));
} catch (Exception e) {
e.printStackTrace();
}
}
}
//作者:wanbo_
// 鏈接:http://www.reibang.com/p/2cd59a79ed4a
// 來(lái)源:簡(jiǎn)書(shū)
// 著作權(quán)歸作者所有女揭。商業(yè)轉(zhuǎn)載請(qǐng)聯(lián)系作者獲得授權(quán)蚤假,非商業(yè)轉(zhuǎn)載請(qǐng)注明出處。
3吧兔、加密工具類勤哗,在LocalCacheUtils中有使用到
/**
* MD5加密工具包
* @author Administrator
*
*/
public class MD5Encoder {
private static StringBuilder sb;
public static String encode(String str){
try {
//獲取MD5加密器
MessageDigest md = MessageDigest.getInstance("MD5");
byte[] bytes = str.getBytes();
byte[] digest = md.digest(bytes);
sb = new StringBuilder();
for (byte b : digest) {
//把每個(gè)字節(jié)轉(zhuǎn)成16進(jìn)制數(shù)
int d = b & 0xff;
String hexString = Integer.toHexString(d);
if (hexString.length() == 1) {
hexString = "0" + hexString;
}
sb.append(hexString);
System.out.println();
}
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
return sb + "";
}
}
4、原生的網(wǎng)絡(luò)加載類
/**
* 三級(jí)緩存之網(wǎng)絡(luò)緩存
*/
public class NetCacheUtils {
private LocalCacheUtils mLocalCacheUtils;
private MemoryCacheUtils mMemoryCacheUtils;
public NetCacheUtils(LocalCacheUtils localCacheUtils, MemoryCacheUtils memoryCacheUtils) {
mLocalCacheUtils = localCacheUtils;
mMemoryCacheUtils = memoryCacheUtils;
}
/**
* 從網(wǎng)絡(luò)下載圖片
* @param ivPic 顯示圖片的imageview
* @param url 下載圖片的網(wǎng)絡(luò)地址
*/
public void getBitmapFromNet(ImageView ivPic, String url) {
new BitmapTask().execute(ivPic, url);//啟動(dòng)AsyncTask
}
/**
* AsyncTask就是對(duì)handler和線程池的封裝
* 第一個(gè)泛型:參數(shù)類型
* 第二個(gè)泛型:更新進(jìn)度的泛型
* 第三個(gè)泛型:onPostExecute的返回結(jié)果
*/
class BitmapTask extends AsyncTask<Object, Void, Bitmap> {
private ImageView ivPic;
private String url;
/**
* 后臺(tái)耗時(shí)操作,存在于子線程中
* @param params
* @return
*/
@Override
protected Bitmap doInBackground(Object[] params) {
ivPic = (ImageView) params[0];
url = (String) params[1];
return downLoadBitmap(url);
}
/**
* 更新進(jìn)度,在主線程中
* @param values
*/
@Override
protected void onProgressUpdate(Void[] values) {
super.onProgressUpdate(values);
}
/**
* 耗時(shí)方法結(jié)束后執(zhí)行該方法,主線程中
* @param result
*/
@Override
protected void onPostExecute(Bitmap result) {
if (result != null) {
ivPic.setImageBitmap(result);
System.out.println("從網(wǎng)絡(luò)緩存圖片啦.....");
//從網(wǎng)絡(luò)獲取圖片后,保存至本地緩存
mLocalCacheUtils.setBitmapToLocal(url, result);
//保存至內(nèi)存中
mMemoryCacheUtils.setBitmapToMemory(url, result);
}
}
}
/**
* 網(wǎng)絡(luò)下載圖片
* @param url
* @return
*/
private Bitmap downLoadBitmap(String url) {
HttpURLConnection conn = null;
try {
conn = (HttpURLConnection) new URL(url).openConnection();
conn.setConnectTimeout(5000);
conn.setReadTimeout(5000);
conn.setRequestMethod("GET");
int responseCode = conn.getResponseCode();
if (responseCode == 200) {
//圖片壓縮
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize=2;//寬高壓縮為原來(lái)的1/2
options.inPreferredConfig=Bitmap.Config.ARGB_4444;
Bitmap bitmap = BitmapFactory.decodeStream(conn.getInputStream(),null,options);
return bitmap;
}
} catch (IOException e) {
e.printStackTrace();
} finally {
conn.disconnect();
}
return null;
}
}
//作者:wanbo_
// 鏈接:http://www.reibang.com/p/2cd59a79ed4a
// 來(lái)源:簡(jiǎn)書(shū)
// 著作權(quán)歸作者所有掩驱。商業(yè)轉(zhuǎn)載請(qǐng)聯(lián)系作者獲得授權(quán)芒划,非商業(yè)轉(zhuǎn)載請(qǐng)注明出處。
5欧穴、最后一個(gè)民逼,供調(diào)用的靜態(tài)類。其中一個(gè)方法需要使用到okhttp涮帘,可以將這幾個(gè)類整合到okhttp中拼苍,如若沒(méi)有使用okhttp,也可以將改方法屏蔽调缨,直接使用原生類加載網(wǎng)絡(luò)圖片也行疮鲫。
/**
* @desc 很粗糙的圖片加載
* @auth 方毅超
* @time 2017/9/13 16:50
*/
public class OkBitmap {
// private static OkBitmap okBitmap;
private static NetCacheUtils mNetCacheUtils;
private static LocalCacheUtils mLocalCacheUtils;
private static MemoryCacheUtils mMemoryCacheUtils;
static {
// okBitmap = new OkBitmap();
mMemoryCacheUtils = new MemoryCacheUtils();
mLocalCacheUtils = new LocalCacheUtils();
mNetCacheUtils = new NetCacheUtils(mLocalCacheUtils, mMemoryCacheUtils);
}
public static void disPlay(ImageView ivPic, String url) {
// ivPic.setImageResource(R.mipmap.logo_ehome);
Bitmap bitmap;
//內(nèi)存緩存
bitmap = mMemoryCacheUtils.getBitmapFromMemory(url);
if (bitmap != null) {
ivPic.setImageBitmap(bitmap);
System.out.println("從內(nèi)存獲取圖片啦.....");
return;
}
//本地緩存
bitmap = mLocalCacheUtils.getBitmapFromLocal(url);
if (bitmap != null) {
ivPic.setImageBitmap(bitmap);
System.out.println("從本地獲取圖片啦.....");
//從本地獲取圖片后,保存至內(nèi)存中
mMemoryCacheUtils.setBitmapToMemory(url, bitmap);
return;
}
//網(wǎng)絡(luò)緩存
mNetCacheUtils.getBitmapFromNet(ivPic, url);
}
//fangyc 2017-09-13 使用okhttp請(qǐng)求
public static void okDisPlay(final ImageView ivPic, final String url) {
// ivPic.setImageResource(R.mipmap.logo_ehome);
Bitmap bitmap;
//內(nèi)存緩存
bitmap = mMemoryCacheUtils.getBitmapFromMemory(url);
if (bitmap != null) {
ivPic.setImageBitmap(bitmap);
System.out.println("從內(nèi)存獲取圖片啦.....");
return;
}
//本地緩存
bitmap = mLocalCacheUtils.getBitmapFromLocal(url);
if (bitmap != null) {
ivPic.setImageBitmap(bitmap);
System.out.println("從本地獲取圖片啦.....");
//從本地獲取圖片后,保存至內(nèi)存中
mMemoryCacheUtils.setBitmapToMemory(url, bitmap);
return;
}
//網(wǎng)絡(luò)緩存
// mNetCacheUtils.getBitmapFromNet(ivPic, url);
/*fangyc 因?yàn)橐獛ookie,所以統(tǒng)一使用okhttp*/
OkHttpUtils.get().url(url).build().execute(new BitmapCallback() {
@Override
public void onError(Call call, Exception e, int id) {
// ivPic.setImageResource(R.drawable.defauit);
}
@Override
public void onResponse(Bitmap response, int id) {
ivPic.setImageBitmap(response);
//從網(wǎng)絡(luò)獲取圖片后,保存至本地緩存
mLocalCacheUtils.setBitmapToLocal(url, response);
//保存至內(nèi)存中
mMemoryCacheUtils.setBitmapToMemory(url, response);
}
});
}
// String url;
// int resourceId;
//// ImageView imageView;
//// static Context mContext;
//
// public static OkBitmap init(){
//// mContext = ctx;
// return okBitmap;
// }
//
// public OkBitmap load(String string) {
// this.url = string;
// return this;
// }
//
//
// public OkBitmap placeholder(int resourceId) {
// this.resourceId = resourceId;
// return this;
// }
//
//
// public OkBitmap into(ImageView view) {
//// this.imageView = view;
// return this;
// }
}