/** 获取缓存数据更具key */
 public String getCacheStr(String key) {
   return ACache.get(this).getAsString(key);
 }
 /** 设置缓存数据(key,value) */
 public void setCacheStr(String key, String value) {
   ACache.get(this).put(key, value);
 }