版權聲明:本文為HaiyuKing原創文章,轉載請注明出處!
前言
官方介紹
ASimpleCache 是一個為android制定的 輕量級的 開源緩存框架。輕量到只有一個java文件(由十幾個類精簡而來)。
1、它可以緩存什么東西?
普通的字符串、JsonObject、JsonArray、Bitmap、Drawable、序列化的java對象,和 byte數據。
2、它有什么特色?
特色主要是:
1:輕,輕到只有一個JAVA文件。
2:可配置,可以配置緩存路徑,緩存大小,緩存數量等。
3:可以設置緩存超時時間,緩存超時自動失效,並被刪除。
4:支持多進程。
3、它在android中可以用在哪些場景?
1、替換SharePreference當做配置文件
2、可以緩存網絡請求數據,比如oschina的android客戶端可以緩存http請求的新聞內容,緩存時間假設為1個小時,超時后自動失效,讓客戶端重新請求新的數據,減少客戶端流量,同時減少服務器並發量。
4、如何使用 ASimpleCache? 以下有個小的demo,希望您能喜歡:
緩存數據
ACache.get(MainActivity.this).put("username_key", "admin");
ACache.get(MainActivity.this).put("password_key", "123456789", 10);//保存10秒,如果超過10秒去獲取這個key,將為null
ACache.get(MainActivity.this).put("password_key", "123456789", 2 * ACache.TIME_DAY);//保存兩天,如果超過兩天去獲取這個key,將為null
獲取數據
ACache.get(MainActivity.this).getAsString("username_key");
效果圖
代碼分析
緩存文件放置在/data/data/app-package-name/cache/路徑下,緩存的目錄默認為ACache,緩存大小和數量均由ACache中的final變量控制。
存在的一個問題是,在部分機型(比如華為榮耀6)上當使用獵豹清理大師進行垃圾清理的時候會把acache中緩存的數據清理掉。
使用步驟
一、項目組織結構圖
注意事項:
1、導入類文件后需要change包名以及重新import R文件路徑
2、Values目錄下的文件(strings.xml、dimens.xml、colors.xml等),如果項目中存在,則復制里面的內容,不要整個覆蓋
二、導入步驟
將Acache復制到項目中

/** * Copyright (c) 2012-2013, Michael Yang 楊福海 (www.yangfuhai.com). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.why.project.acachedemo.utils; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.PixelFormat; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; import org.json.JSONArray; import org.json.JSONObject; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.OutputStream; import java.io.RandomAccessFile; import java.io.Serializable; import java.util.Collections; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicLong; /** * https://github.com/yangfuhai/ASimpleCache * 緩存文件放置在/data/data/app-package-name/cache/路徑下,緩存的目錄默認為ACache,緩存大小和數量均由ACache中的final變量控制。 */ public class ACache { /**設置的緩存的時間*/ public static final int TIME_HOUR = 60 * 60;//1小時 public static final int TIME_DAY = TIME_HOUR * 24;//1天 /**設置的緩存的大小*/ private static final int MAX_SIZE = 1000 * 1000 * 50; // 50 MB private static final int MAX_COUNT = Integer.MAX_VALUE; // 不限制存放數據的數量 /**聲明一個Map,用於存放ACache對象*/ private static Map<String, ACache> mInstanceMap = new HashMap<String, ACache>(); /**緩存管理器*/ private ACacheManager mCacheManager; //ACache類的構造方法為private的,所以只能通過get方式獲取實例。 private ACache(File cacheDir, long max_size, int max_count) { //如果cacheDir文件不存在並且無法新建子目錄,則報錯 if (!cacheDir.exists() && !cacheDir.mkdirs()) { throw new RuntimeException("can't make dirs in " + cacheDir.getAbsolutePath()); } //實例化緩存管理器對象 mCacheManager = new ACacheManager(cacheDir, max_size, max_count); } //默認情況下調用該方法 public static ACache get(Context ctx) { return get(ctx, "ACache"); } public static ACache get(Context ctx, long max_zise, int max_count) { File f = new File(ctx.getCacheDir(), "ACache"); return get(f, max_zise, max_count); } public static ACache get(Context ctx, String cacheName) { File f = new File(ctx.getCacheDir(), cacheName); return get(f, MAX_SIZE, MAX_COUNT); } public static ACache get(File cacheDir) { return get(cacheDir, MAX_SIZE, MAX_COUNT); } //最終默認調用的實例方法 public static ACache get(File cacheDir, long max_zise, int max_count) { //Map中的Key值為cacheDir.getAbsoluteFile() + myPid(),例如:/data/data/com.yangfuhai.asimplecachedemo/cache/ACache_16609 ACache manager = mInstanceMap.get(cacheDir.getAbsoluteFile() + myPid()); if (manager == null) { manager = new ACache(cacheDir, max_zise, max_count); //Log.v("ACache", cacheDir.getAbsolutePath() + myPid()); mInstanceMap.put(cacheDir.getAbsolutePath() + myPid(), manager); } return manager; } private static String myPid() { return "_" + android.os.Process.myPid(); } /** * Provides a means to save a cached file before the data are available. * Since writing about the file is complete, and its close method is called, * its contents will be registered in the cache. Example of use: * * ACache cache = new ACache(this) try { OutputStream stream = * cache.put("myFileName") stream.write("some bytes".getBytes()); // now * update cache! stream.close(); } catch(FileNotFoundException e){ * e.printStackTrace() } */ class xFileOutputStream extends FileOutputStream { File file; public xFileOutputStream(File file) throws FileNotFoundException { super(file); this.file = file; } public void close() throws IOException { super.close(); mCacheManager.put(file); } } // ======================================= // ============ String數據 讀寫 ============== // ======================================= /** * 保存 String數據 到 緩存中 * * @param key * 保存的key * @param value * 保存的String數據 */ //在ACache目錄下創建一個文件,文件名為:File(cacheDir, key.hashCode() + “”)。然后將數據存入文件 public void put(String key, String value) { File file = mCacheManager.newFile(key); BufferedWriter out = null; try { out = new BufferedWriter(new FileWriter(file), 1024); out.write(value); } catch (IOException e) { e.printStackTrace(); } finally { if (out != null) { try { out.flush(); out.close(); } catch (IOException e) { e.printStackTrace(); } } mCacheManager.put(file); } } /** * 保存 String數據 到 緩存中一定時間 * * @param key * 保存的key * @param value * 保存的String數據 * @param saveTime * 保存的時間,單位:秒 */ public void put(String key, String value, int saveTime) { put(key, Utils.newStringWithDateInfo(saveTime, value)); } /** * 讀取 String數據 * * @param key * @return String 數據 */ public String getAsString(String key) { File file = mCacheManager.get(key); if (!file.exists()) return null; boolean removeFile = false; BufferedReader in = null; try { in = new BufferedReader(new FileReader(file)); String readString = ""; String currentLine; while ((currentLine = in.readLine()) != null) { readString += currentLine; } if (!Utils.isDue(readString)) { return Utils.clearDateInfo(readString); } else { removeFile = true; return null; } } catch (IOException e) { e.printStackTrace(); return null; } finally { if (in != null) { try { in.close(); } catch (IOException e) { e.printStackTrace(); } } if (removeFile) remove(key); } } // ======================================= // ============= JSONObject 數據 讀寫 ============== // ======================================= /** * 保存 JSONObject數據 到 緩存中 * * @param key * 保存的key * @param value * 保存的JSON數據 */ public void put(String key, JSONObject value) { put(key, value.toString()); } /** * 保存 JSONObject數據 到 緩存中 * * @param key * 保存的key * @param value * 保存的JSONObject數據 * @param saveTime * 保存的時間,單位:秒 */ public void put(String key, JSONObject value, int saveTime) { put(key, value.toString(), saveTime); } /** * 讀取JSONObject數據 * * @param key * @return JSONObject數據 */ public JSONObject getAsJSONObject(String key) { String JSONString = getAsString(key); if(JSONString != null){ try { JSONObject obj = new JSONObject(JSONString); return obj; } catch (Exception e) { e.printStackTrace(); return null; } }else{ return null; } } // ======================================= // ============ JSONArray 數據 讀寫 ============= // ======================================= /** * 保存 JSONArray數據 到 緩存中 * * @param key * 保存的key * @param value * 保存的JSONArray數據 */ public void put(String key, JSONArray value) { put(key, value.toString()); } /** * 保存 JSONArray數據 到 緩存中 * * @param key * 保存的key * @param value * 保存的JSONArray數據 * @param saveTime * 保存的時間,單位:秒 */ public void put(String key, JSONArray value, int saveTime) { put(key, value.toString(), saveTime); } /** * 讀取JSONArray數據 * * @param key * @return JSONArray數據 */ public JSONArray getAsJSONArray(String key) { String JSONString = getAsString(key); try { JSONArray obj = new JSONArray(JSONString); return obj; } catch (Exception e) { e.printStackTrace(); return null; } } // ======================================= // ============== byte 數據 讀寫 ============= // ======================================= /** * 保存 byte數據 到 緩存中 * * @param key * 保存的key * @param value * 保存的數據 */ public void put(String key, byte[] value) { File file = mCacheManager.newFile(key); FileOutputStream out = null; try { out = new FileOutputStream(file); out.write(value); } catch (Exception e) { e.printStackTrace(); } finally { if (out != null) { try { out.flush(); out.close(); } catch (IOException e) { e.printStackTrace(); } } mCacheManager.put(file); } } /** * Cache for a stream * * @param key * the file name. * @return OutputStream stream for writing data. * @throws FileNotFoundException * if the file can not be created. */ public OutputStream put(String key) throws FileNotFoundException { return new xFileOutputStream(mCacheManager.newFile(key)); } /** * * @param key * the file name. * @return (InputStream or null) stream previously saved in cache. * @throws FileNotFoundException * if the file can not be opened */ public InputStream get(String key) throws FileNotFoundException { File file = mCacheManager.get(key); if (!file.exists()) return null; return new FileInputStream(file); } /** * 保存 byte數據 到 緩存中 * * @param key * 保存的key * @param value * 保存的數據 * @param saveTime * 保存的時間,單位:秒 */ public void put(String key, byte[] value, int saveTime) { put(key, Utils.newByteArrayWithDateInfo(saveTime, value)); } /** * 獲取 byte 數據 * * @param key * @return byte 數據 */ public byte[] getAsBinary(String key) { RandomAccessFile RAFile = null; boolean removeFile = false; try { File file = mCacheManager.get(key); if (!file.exists()) return null; RAFile = new RandomAccessFile(file, "r"); byte[] byteArray = new byte[(int) RAFile.length()]; RAFile.read(byteArray); if (!Utils.isDue(byteArray)) { return Utils.clearDateInfo(byteArray); } else { removeFile = true; return null; } } catch (Exception e) { e.printStackTrace(); return null; } finally { if (RAFile != null) { try { RAFile.close(); } catch (IOException e) { e.printStackTrace(); } } if (removeFile) remove(key); } } // ======================================= // ============= 序列化 數據 讀寫 =============== // ======================================= /** * 保存 Serializable數據 到 緩存中 * * @param key * 保存的key * @param value * 保存的value */ public void put(String key, Serializable value) { put(key, value, -1); } /** * 保存 Serializable數據到 緩存中 * * @param key * 保存的key * @param value * 保存的value * @param saveTime * 保存的時間,單位:秒 */ public void put(String key, Serializable value, int saveTime) { ByteArrayOutputStream baos = null; ObjectOutputStream oos = null; try { baos = new ByteArrayOutputStream(); oos = new ObjectOutputStream(baos); oos.writeObject(value); byte[] data = baos.toByteArray(); if (saveTime != -1) { put(key, data, saveTime); } else { put(key, data); } } catch (Exception e) { e.printStackTrace(); } finally { try { oos.close(); } catch (IOException e) { } } } /** * 讀取 Serializable數據 * * @param key * @return Serializable 數據 */ public Object getAsObject(String key) { byte[] data = getAsBinary(key); if (data != null) { ByteArrayInputStream bais = null; ObjectInputStream ois = null; try { bais = new ByteArrayInputStream(data); ois = new ObjectInputStream(bais); Object reObject = ois.readObject(); return reObject; } catch (Exception e) { e.printStackTrace(); return null; } finally { try { if (bais != null) bais.close(); } catch (IOException e) { e.printStackTrace(); } try { if (ois != null) ois.close(); } catch (IOException e) { e.printStackTrace(); } } } return null; } // ======================================= // ============== bitmap 數據 讀寫 ============= // ======================================= /** * 保存 bitmap 到 緩存中 * * @param key * 保存的key * @param value * 保存的bitmap數據 */ public void put(String key, Bitmap value) { put(key, Utils.Bitmap2Bytes(value)); } /** * 保存 bitmap 到 緩存中 * * @param key * 保存的key * @param value * 保存的 bitmap 數據 * @param saveTime * 保存的時間,單位:秒 */ public void put(String key, Bitmap value, int saveTime) { put(key, Utils.Bitmap2Bytes(value), saveTime); } /** * 讀取 bitmap 數據 * * @param key * @return bitmap 數據 */ public Bitmap getAsBitmap(String key) { if (getAsBinary(key) == null) { return null; } return Utils.Bytes2Bimap(getAsBinary(key)); } // ======================================= // ============= drawable 數據 讀寫 ============= // ======================================= /** * 保存 drawable 到 緩存中 * * @param key * 保存的key * @param value * 保存的drawable數據 */ public void put(String key, Drawable value) { put(key, Utils.drawable2Bitmap(value)); } /** * 保存 drawable 到 緩存中 * * @param key * 保存的key * @param value * 保存的 drawable 數據 * @param saveTime * 保存的時間,單位:秒 */ public void put(String key, Drawable value, int saveTime) { put(key, Utils.drawable2Bitmap(value), saveTime); } /** * 讀取 Drawable 數據 * * @param key * @return Drawable 數據 */ public Drawable getAsDrawable(String key) { if (getAsBinary(key) == null) { return null; } return Utils.bitmap2Drawable(Utils.Bytes2Bimap(getAsBinary(key))); } /** * 獲取緩存文件 * * @param key * @return value 緩存的文件 */ public File file(String key) { File f = mCacheManager.newFile(key); if (f.exists()) return f; return null; } /** * 移除某個key * * @param key * @return 是否移除成功 */ public boolean remove(String key) { return mCacheManager.remove(key); } /** * 清除所有數據 */ public void clear() { mCacheManager.clear(); } /** * @title 緩存管理器 * @author 楊福海(michael) www.yangfuhai.com * @version 1.0 */ public class ACacheManager { private final AtomicLong cacheSize; private final AtomicInteger cacheCount; private final long sizeLimit; private final int countLimit; private final Map<File, Long> lastUsageDates = Collections.synchronizedMap(new HashMap<File, Long>()); protected File cacheDir; private ACacheManager(File cacheDir, long sizeLimit, int countLimit) { this.cacheDir = cacheDir; this.sizeLimit = sizeLimit; this.countLimit = countLimit; cacheSize = new AtomicLong(); cacheCount = new AtomicInteger(); calculateCacheSizeAndCacheCount(); } /** * 計算 cacheSize和cacheCount */ private void calculateCacheSizeAndCacheCount() { new Thread(new Runnable() { @Override public void run() { int size = 0; int count = 0; File[] cachedFiles = cacheDir.listFiles(); if (cachedFiles != null) { for (File cachedFile : cachedFiles) { size += calculateSize(cachedFile); count += 1; lastUsageDates.put(cachedFile, cachedFile.lastModified()); } cacheSize.set(size); cacheCount.set(count); } } }).start(); } private void put(File file) { int curCacheCount = cacheCount.get(); while (curCacheCount + 1 > countLimit) { long freedSize = removeNext(); cacheSize.addAndGet(-freedSize); curCacheCount = cacheCount.addAndGet(-1); } cacheCount.addAndGet(1); long valueSize = calculateSize(file); long curCacheSize = cacheSize.get(); while (curCacheSize + valueSize > sizeLimit) { long freedSize = removeNext(); curCacheSize = cacheSize.addAndGet(-freedSize); } cacheSize.addAndGet(valueSize); Long currentTime = System.currentTimeMillis(); file.setLastModified(currentTime); lastUsageDates.put(file, currentTime); } private File get(String key) { File file = newFile(key); Long currentTime = System.currentTimeMillis(); file.setLastModified(currentTime); lastUsageDates.put(file, currentTime); return file; } private File newFile(String key) { return new File(cacheDir, key.hashCode() + ""); } private boolean remove(String key) { File image = get(key); return image.delete(); } private void clear() { lastUsageDates.clear(); cacheSize.set(0); File[] files = cacheDir.listFiles(); if (files != null) { for (File f : files) { f.delete(); } } } /** * 移除舊的文件 * * @return */ private long removeNext() { if (lastUsageDates.isEmpty()) { return 0; } Long oldestUsage = null; File mostLongUsedFile = null; Set<Entry<File, Long>> entries = lastUsageDates.entrySet(); synchronized (lastUsageDates) { for (Entry<File, Long> entry : entries) { if (mostLongUsedFile == null) { mostLongUsedFile = entry.getKey(); oldestUsage = entry.getValue(); } else { Long lastValueUsage = entry.getValue(); if (lastValueUsage < oldestUsage) { oldestUsage = lastValueUsage; mostLongUsedFile = entry.getKey(); } } } } long fileSize = calculateSize(mostLongUsedFile); if (mostLongUsedFile.delete()) { lastUsageDates.remove(mostLongUsedFile); } return fileSize; } private long calculateSize(File file) { return file.length(); } } /** * @title 時間計算工具類 * @author 楊福海(michael) www.yangfuhai.com * @version 1.0 */ private static class Utils { /** * 判斷緩存的String數據是否到期 * * @param str * @return true:到期了 false:還沒有到期 */ private static boolean isDue(String str) { return isDue(str.getBytes()); } /** * 判斷緩存的byte數據是否到期 * * @param data * @return true:到期了 false:還沒有到期 */ private static boolean isDue(byte[] data) { String[] strs = getDateInfoFromDate(data); if (strs != null && strs.length == 2) { String saveTimeStr = strs[0]; while (saveTimeStr.startsWith("0")) { saveTimeStr = saveTimeStr.substring(1, saveTimeStr.length()); } long saveTime = Long.valueOf(saveTimeStr); long deleteAfter = Long.valueOf(strs[1]); if (System.currentTimeMillis() > saveTime + deleteAfter * 1000) { return true; } } return false; } private static String newStringWithDateInfo(int second, String strInfo) { return createDateInfo(second) + strInfo; } private static byte[] newByteArrayWithDateInfo(int second, byte[] data2) { byte[] data1 = createDateInfo(second).getBytes(); byte[] retdata = new byte[data1.length + data2.length]; System.arraycopy(data1, 0, retdata, 0, data1.length); System.arraycopy(data2, 0, retdata, data1.length, data2.length); return retdata; } private static String clearDateInfo(String strInfo) { if (strInfo != null && hasDateInfo(strInfo.getBytes())) { strInfo = strInfo.substring(strInfo.indexOf(mSeparator) + 1, strInfo.length()); } return strInfo; } private static byte[] clearDateInfo(byte[] data) { if (hasDateInfo(data)) { return copyOfRange(data, indexOf(data, mSeparator) + 1, data.length); } return data; } private static boolean hasDateInfo(byte[] data) { return data != null && data.length > 15 && data[13] == '-' && indexOf(data, mSeparator) > 14; } private static String[] getDateInfoFromDate(byte[] data) { if (hasDateInfo(data)) { String saveDate = new String(copyOfRange(data, 0, 13)); String deleteAfter = new String(copyOfRange(data, 14, indexOf(data, mSeparator))); return new String[] { saveDate, deleteAfter }; } return null; } private static int indexOf(byte[] data, char c) { for (int i = 0; i < data.length; i++) { if (data[i] == c) { return i; } } return -1; } private static byte[] copyOfRange(byte[] original, int from, int to) { int newLength = to - from; if (newLength < 0) throw new IllegalArgumentException(from + " > " + to); byte[] copy = new byte[newLength]; System.arraycopy(original, from, copy, 0, Math.min(original.length - from, newLength)); return copy; } private static final char mSeparator = ' '; private static String createDateInfo(int second) { String currentTime = System.currentTimeMillis() + ""; while (currentTime.length() < 13) { currentTime = "0" + currentTime; } return currentTime + "-" + second + mSeparator; } /* * Bitmap → byte[] */ private static byte[] Bitmap2Bytes(Bitmap bm) { if (bm == null) { return null; } ByteArrayOutputStream baos = new ByteArrayOutputStream(); bm.compress(Bitmap.CompressFormat.PNG, 100, baos); return baos.toByteArray(); } /* * byte[] → Bitmap */ private static Bitmap Bytes2Bimap(byte[] b) { if (b.length == 0) { return null; } return BitmapFactory.decodeByteArray(b, 0, b.length); } /* * Drawable → Bitmap */ private static Bitmap drawable2Bitmap(Drawable drawable) { if (drawable == null) { return null; } // 取 drawable 的長寬 int w = drawable.getIntrinsicWidth(); int h = drawable.getIntrinsicHeight(); // 取 drawable 的顏色格式 Bitmap.Config config = drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565; // 建立對應 bitmap Bitmap bitmap = Bitmap.createBitmap(w, h, config); // 建立對應 bitmap 的畫布 Canvas canvas = new Canvas(bitmap); drawable.setBounds(0, 0, w, h); // 把 drawable 內容畫到畫布中 drawable.draw(canvas); return bitmap; } /* * Bitmap → Drawable */ @SuppressWarnings("deprecation") private static Drawable bitmap2Drawable(Bitmap bm) { if (bm == null) { return null; } BitmapDrawable bd=new BitmapDrawable(bm); bd.setTargetDensity(bm.getDensity()); return new BitmapDrawable(bm); } } }
將Globals復制到項目中(或者在類似文件(用於存放全局變量和公共方法)中添加以下代碼)
package com.why.project.acachedemo.utils; /** * Created HaiyuKing * Used 全局變量和公共方法 */ public class Globals { /**==================緩存的key值===============================*/ /**用戶名*/ public static final String USERNAME_KEY = "username"; }
三、使用方法
package com.why.project.acachedemo; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; import com.why.project.acachedemo.utils.ACache; import com.why.project.acachedemo.utils.Globals; public class MainActivity extends AppCompatActivity { private EditText mUsernameEdt; private Button mLoginBtn; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initViews(); initDatas(); initEvents(); } //初始化控件 private void initViews(){ mUsernameEdt = (EditText) findViewById(R.id.edt_username); mLoginBtn = (Button) findViewById(R.id.btn_login); } //初始化數據 private void initDatas(){ //判斷是否緩存了用戶名,如果是的話,讀取緩存的用戶名並填充到輸入框中 initNamePwdFromCache(); } //初始化事件 private void initEvents(){ mLoginBtn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { String userName = mUsernameEdt.getText().toString(); //緩存用戶名 ACache.get(MainActivity.this).put(Globals.USERNAME_KEY,userName); Toast.makeText(MainActivity.this,"已緩存用戶名:"+userName,Toast.LENGTH_SHORT).show(); } }); } /** * 從緩存中查詢用戶名是否保存,並加載用戶名 * */ private void initNamePwdFromCache() { //有緩存文件 String userNameCache = ACache.get(this).getAsString(Globals.USERNAME_KEY); if (userNameCache != null) { mUsernameEdt.setText(userNameCache); Toast.makeText(MainActivity.this,"已加載緩存的用戶名:"+userNameCache,Toast.LENGTH_SHORT).show(); } } }
混淆配置
無
參考資料
【Android開源項目分析】android輕量級開源緩存框架——ASimpleCache(ACache)源碼分析
http://blog.csdn.net/zhoubin1992/article/details/46379055
ASimpleCache框架源碼鏈接
https://github.com/yangfuhai/ASimpleCache
ASimpleCache開源庫使用分析
http://blog.csdn.net/yanbober/article/details/45306851