重用WebView的cache图片文件
如何从WebView使用的cache文件夹中重复使用一些图片资源:
Java代码
/** 从缓存里读取图片 */
public Bitmap getPictureFromCache() {
Bitmap bitmap = null;
File file = new File(getCacheDir() + "/webviewCache/10d8d5cd");
try {
FileInputStream is = new FileInputStream(file);
bitmap = BitmapFactory.decodeStream(is);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
return bitmap;
}
作者“Envisage123”
补充:移动开发 , Android ,