缓存工具类ACache使用方法详解

本文实例为大家分享了缓存工具类ACache的使用,供大家参考,具体内容如下

(1). ACache mCache = ACache.get(this);
(2). String cacheData = mCache.getAsString("cache_data");
(3). if (!TextUtils.isEmpty(cacheData)) {
                解析、setAdapter、
          }
(4). 然后仍然请求网络,因为缓存的意义是为了在没网的情况下有数据显示。
(5). 网络请求后获得的数据再
mCache.remove("cache_data");
mCache.put("cache_data", data);

Acache.java:

/**
 * Copyright (c) 2012-2013, Michael Yang 杨福海 (www.yangfuhai.com).
 * <p/>
 * 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
 * <p/>
 * http://www.apache.org/licenses/LICENSE-2.0
 * <p/>
 * 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.monkey.monkeymushroom.utils;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
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;

import org.json.JSONArray;
import org.json.JSONObject;

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;

/**
 * @author Michael Yang(www.yangfuhai.com) update at 2013.08.07
 */
public class ACache {
 public static final int TIME_HOUR = 60 * 60;
 public static final int TIME_DAY = TIME_HOUR * 24;
 private static final int MAX_SIZE = 1000 * 1000 * 100; // 100 mb-->原来50M
 private static final int MAX_COUNT = Integer.MAX_VALUE; // 不限制存放数据的数量
 private static Map<String, ACache> mInstanceMap = new HashMap<String, ACache>();
 private ACacheManager mCache;

 public static ACache get(Context ctx) {
  return get(ctx, "ACache");
 }

 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 getKx(Context ctx, String cacheName) {
  String kxDir = ctx.getFilesDir().getAbsolutePath() + "/KxDir";
  File f = new File(kxDir, 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(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(File cacheDir, long max_zise, int max_count) {
  ACache manager = mInstanceMap.get(cacheDir.getAbsoluteFile() + myPid());
  if (manager == null) {
   manager = new ACache(cacheDir, max_zise, max_count);
   mInstanceMap.put(cacheDir.getAbsolutePath() + myPid(), manager);
  }
  return manager;
 }

 private static String myPid() {
  return "_" + android.os.Process.myPid();
 }

 private ACache(File cacheDir, long max_size, int max_count) {
  if (!cacheDir.exists() && !cacheDir.mkdirs()) {
   throw new RuntimeException("can't make dirs in " + cacheDir.getAbsolutePath());
  }
  mCache = new ACacheManager(cacheDir, max_size, max_count);
 }

 // =======================================
 // ============ String数据 读写 ==============
 // =======================================

 /**
  * 保存 String数据 到 缓存中
  *
  * @param key 保存的key
  * @param value 保存的String数据
  */
 public void put(String key, String value) {
  File file = mCache.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();
    }
   }
   mCache.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 = mCache.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);
  try {
   JSONObject obj = new JSONObject(JSONString);
   return obj;
  } catch (Exception e) {
   e.printStackTrace();
   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 = mCache.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();
    }
   }
   mCache.put(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 = mCache.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 = mCache.newFile(key);
  if (f.exists())
   return f;
  return null;
 }

 /**
  * 移除某个key
  *
  * @param key
  * @return 是否移除成功
  */
 public boolean remove(String key) {
  return mCache.remove(key);
 }

 /**
  * 清除所有数据
  */
 public void clear() {
  mCache.clear();
 }

 /**
  * @author 杨福海(michael) www.yangfuhai.com
  * @version 1.0
  * @title 缓存管理器
  */
 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();
  }
 }

 /**
  * @author 杨福海(michael) www.yangfuhai.com
  * @version 1.0
  * @title 时间计算工具类
  */
 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;
   }
   return new BitmapDrawable(bm);
  }
 }

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • springboot使用GuavaCache做简单缓存处理的方法

    问题背景 实际项目碰到一个上游服务商接口有10秒的查询限制(同个账号). 项目中有一个需求是要实时统计一些数据,一个应用下可能有多个相同的账号.由于服务商接口的限制,当批量查询时,可能出现同一个账号第一次查询有数据,但第二次查询无数据的情况. 解决方案 基于以上问题,提出用缓存的过期时间来解决. 这时,可用Redis和Guava Cache来解决: 当批量查询时,同一个账号第一次查询有数据则缓存并设置过期时间10s, 后续查询时直接从缓存中取,没有再从服务商查询. 最终采用Guava Cache

  • 缓存工具类ACache使用方法详解

    本文实例为大家分享了缓存工具类ACache的使用,供大家参考,具体内容如下 (1). ACache mCache = ACache.get(this); (2). String cacheData = mCache.getAsString("cache_data"); (3). if (!TextUtils.isEmpty(cacheData)) {                 解析.setAdapter.           } (4). 然后仍然请求网络,因为缓存的意义是为了在

  • python 工具类之Queue组件详解用法

    目录 简述 环境 单向队列 先进后出队列 优先级队列 双向队列 完整代码 总结 简述 队列一直都是工程化开发中经常使用的数据类型,本篇文章主要介绍一下python queue的使用,会边调试代码,边说明方法内容. 环境 python: 3.6.13 单向队列 初始化单向队列 放置一些数据 可以使用full()方法判断队列是否已经塞满数据,可以通过qsize()方法查看队列内元素数量. 这时候我们从队列取出数据,看先取到的是什么. 现在队列里面只有两个数,我们再塞入3个数看一下. 这个时候我们继续

  • Java本地缓存工具之LoadingCache的使用详解

    目录 前言 环境依赖 代码 演示一下 总结 前言 在工作总常常需要用到缓存,而redis往往是首选,但是短期的数据缓存一般我们还是会用到本地缓存.本文提供一个我在工作中用到的缓存工具,该工具代码为了演示做了一些调整.如果拿去使用的话,可以考虑做成注入Bean对象,看具体需求了. 环境依赖 先添加maven依赖 <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</arti

  • Java AtomicInteger类的使用方法详解

    首先看两段代码,一段是Integer的,一段是AtomicInteger的,为以下: public class Sample1 { private static Integer count = 0; synchronized public static void increment() { count++; } } 以下是AtomicInteger的: public class Sample2 { private static AtomicInteger count = new AtomicIn

  • 对python:threading.Thread类的使用方法详解

    Python Thread类表示在单独的控制线程中运行的活动.有两种方法可以指定这种活动: 1.给构造函数传递回调对象 mthread=threading.Thread(target=xxxx,args=(xxxx)) mthread.start() 2.在子类中重写run() 方法 这里举个小例子: import threading, time class MyThread(threading.Thread): def __init__(self): threading.Thread.__in

  • python 中Mixin混入类的使用方法详解

    目录 前言 Mixin 与继承的区别 总结 前言 最近在看sanic的源码,发现有很多Mixin的类,大概长成这个样子 class BaseSanic(    RouteMixin,    MiddlewareMixin,    ListenerMixin,    ExceptionMixin,    SignalMixin,    metaclass=SanicMeta, ): 于是对于这种 Mixin 研究了一下,其实也没什么新的东西,Mixin 又称混入,只是一种编程思想的体现,但是在使用

  • Java中Optional类及orElse方法详解

    目录 引言 Java 中的 Optional 类 ofNullable() 方法 orElse() 方法 案例 orElseGet() 方法 案例 orElse() 与 orElseGet() 之间的区别 引言 为了让我更快的熟悉代码,前段时间组长交代了一个小任务,大致就是让我整理一下某个模块中涉及的 sql,也是方便我有目的的看代码,也是以后方便他们查问题(因为这个模块,涉及的判断很多,所以之前如果 sql 出错了,查问题比较繁琐). 昨天算是基本完成了,然后今天组长就让给我看一个该模块的缺陷

  • android多媒体类VideoView使用方法详解

    一.概述 VideoView类将视频的显示和控制集于一身,我们可以借助它完成一个简易的视频播放器.VideoView和MediaPlayer也比较相似. 二.VideoView的使用方法 它主要有以下几种常用方法 步骤: 1.指定视频文件的路径, 2.接下来调用start()方法就可以开始播放视频,pause()方法就会暂停播放,resume()方法就会重新播放 注:获取视频文件也需要运行时权限,所有相关逻辑也需要写.       最后不要忘记在AndroidManifest.xml文件中声明用

  • ThinkPHP静态缓存简单配置和使用方法详解

    本文实例讲述了ThinkPHP静态缓存简单配置和使用方法.分享给大家供大家参考,具体如下: 根据ThinkPHP官方手册:ThinkPHP内置了静态缓存类,通过静态缓存规则定义来实现了可配置的静态缓存. 启用静态缓存: ThinkPHP官方手册写道 要使用静态缓存功能,需要开启HTML_CACHE_ON 参数,并且在项目配置目录下面增加静态缓存规则文件 htmls.php,两者缺一不可.否则静态缓存不会生效. 在配置文件Conf\config.php的array()中加上: 'HTML_CACH

  • 抓包工具Fiddler的使用方法详解(Fiddler中文教程)

    Fiddler简介 Fiddler(中文名称:小提琴)是一个HTTP的调试代理,以代理服务器的方式,监听系统的Http网络数据流动,Fiddler可以也可以让你检查所有的HTTP通讯,设置断点,以及Fiddle所有的"进出"的数据(我一般用来抓包) Fiddler还包含一个简单却功能强大的基于JScript .NET事件脚本子系统,它可以支持众多的HTTP调试任务. Fiddler官方网站提供了大量的帮助文档和视频教程,这是学习Fiddler的最好资料 Fiddler_官方网站 Fid

随机推荐