码迷,mamicode.com
首页 > 移动开发 > 详细

Android http 请求 Json数据缓存到内存

时间:2014-12-27 19:04:06      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

package com.innjoo.store.cache;
import com.ferris.utils.StringUtils;
import android.support.v4.util.LruCache;
/**
 * 
 * @ClassName: LruJsonCache json缓存类
 * @Description: TODO
 * @author 重播
 * @email 459821731@qq.com
 * @date 2014-12-27 下午5:33:49
 * @csdn blog.csdn.net/xufeifandj
 */
public class LruJsonCache {
	private LruCache<String, String> mMemoryCache;

	public LruJsonCache() {
		int maxMemory = (int) Runtime.getRuntime().maxMemory() / 10;
		mMemoryCache = new LruCache<String, String>(maxMemory) {
			@Override
			protected int sizeOf(String key, String value) {
				return value.length();
			}
		};
	}

	/**
	 * 
	 * @Title: addJsonToMemoryCache
	 * @Description: TODO 添加json内存
	 * @return void
	 */
	public void addJsonToMemoryCache(String key, String jsonString) {
		if (mMemoryCache == null) {
			return;
		}
		if (StringUtils.isEmpty(key)) {
			return;
		}

		if (getJsonFromMemCache(key) == null && jsonString != null) {
			mMemoryCache.put(key, jsonString);
		}
	}

	/**
	 * 从内存缓存中获取一个Json
	 * @param key
	 * @return
	 */
	public String getJsonFromMemCache(String key) {
		if (mMemoryCache == null) {
			return null;
		}
		return mMemoryCache.get(key);
	}
}


Android http 请求 Json数据缓存到内存

标签:

原文地址:http://blog.csdn.net/xufeifandj/article/details/42195251

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!