如何在android中的缓存文件夹中获取已下载的图像

时间:2015-08-21 14:27:59

标签: android caching

我下载并将图像从网络保存到我的应用缓存文件夹。现在我正在尝试将特定的缓存文件夹图像(PREM.jpg)转换为位图。为此,我使用波纹管代码。

FileCache file = new FileCache(Context);
File f = file.getFile("PREM.jpg");
Bitmap bitmap = decodeFile(f);
System.out.println("Exist status. " + f.exists());

但我总是得到文件不存在(存在状态。假)。

实际上" PREM.jpg"文件名显示一些像" -1006685176"在缓存文件夹中。

这是我的缓存填充程序enter image description here

你能帮我解决一下如何将特定图像转换成位图。

谢谢大家。

炳廷

0 个答案:

没有答案