我正在尝试使用jake wharton DiskLruCache库实现基于磁盘的映像lru缓存。 link to library。我使用的是here的代码段。
我遇到问题的方法是
private boolean writeBitmapToFile(Bitmap bitmap, DiskLruCache.Editor editor)
throws IOException, FileNotFoundException {
OutputStream out = null;
try {
out = new BufferedOutputStream(editor.newOutputStream(0), Utils.IO_BUFFER_SIZE);
return bitmap.compress(mCompressFormat, mCompressQuality, out);
} finally {
if (out != null) {
out.close();
}
}
}
其中editor.newOutputStream(0)不存在,而这个
public Bitmap getBitmap(String key) {
Bitmap bitmap = null;
DiskLruCache.Snapshot snapshot = null;
try {
snapshot = mDiskCache.get(key);
if (snapshot == null) {
return null;
}
final InputStream in = snapshot.getInputStream(0);
if (in != null) {
final BufferedInputStream buffIn =
new BufferedInputStream(in, Utils.IO_BUFFER_SIZE);
bitmap = BitmapFactory.decodeStream(buffIn);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (snapshot != null) {
snapshot.close();
}
}
Log.d("cache_test_DISK_", bitmap == null ? "" : "image read from disk " + key);
return bitmap;
}
其中snapshot.getInputStream(0)也不存在。
我做错了什么?我已经把jar放在了库中,一切都很好,这些方法是从DiskLruCache库中删除的吗?现在还有其他办法吗?我找不到任何示例或教程。
库版本是最新的disklrucache-2.0.2
答案 0 :(得分:1)
确保您已导入正确的班级:
import com.jakewharton.disklrucache.DiskLruCache