android 缓存http请求数据

public class BasicCache {
 private Map<String, String> cache = new HashMap<String, String>();
 private static BasicCache bc;
 private BasicCache() {
 }
 public static BasicCache getInstance() {
  if (null == bc) {
   bc = new BasicCache();
  }
  return bc;
 }
 /**
  * 根据url从缓存中取数据
  * @param key
  * @return
  */
 public String getValue(String key) {
  String value = cache.get(key);
  if (null==value) {
   Tools tools = new Tools();
   String result = tools.getUrl(key,10000);
   if(null!=result&&!"".equals(result)){
    cache.put(key, result);
   }
   return result;
  }else{
   return value;
  }
 }
 /**
  * 清空缓存
  */
 public void clearCache(){
  cache.clear();
 }
 
}
//请求类
public class Tools {
 public String getUrl(String urls,int overtime){
  StringBuffer result = new StringBuffer();
  URL url = null;
  try {
   url = new URL(urls);
   if (url == null) {
    System.out.println("读取url地址失败");
    return null;
   }
   HttpURLConnection conn = (HttpURLConnection) url.openConnection();
   conn.setDoInput(true);
   conn.setRequestProperty("Content-Type",
     "application/x-www-form-urlencoded");
   conn.setRequestMethod("GET");
   conn.setConnectTimeout(overtime);
   conn.setReadTimeout(overtime);
   conn.connect();
   int code = conn.getResponseCode();
   if (code != 200) {
    System.out.println("服务器返回错误的状态码:" + code);
   } else {
    BufferedReader br = new BufferedReader(new InputStreamReader(
      conn.getInputStream(), "utf-8"));
    String temp = null;
    while ((temp = br.readLine()) != null) {
     result.append(temp);
    }
   }
   
  } catch (IOException e) {
   System.out.println("error:\n" + e.getMessage());
   return null;
  }
  return result.toString();
 }
activity:
   String  url ="请求的url";
   String result = BasicCache.getInstance().getValue(url);

转载于:https://my.oschina.net/xiahuawuyu/blog/92083

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值