Android的 - 存储在内部存储器中的图像缓存和重新使用(android - storing i

2019-06-25 18:25发布

在我的应用我试图将图像存储在内存中,以便它只能在我的应用程序使用,不能在其他方面看出。

在下面的方法我都存储在内部存储器中的图像缓存

File cacheDir = getApplicationContext().getDir("", Context.MODE_PRIVATE); 
File fileWithinMyDir = new File(cacheDir, "");

for(int i = 0; i < img.size(); i++)
{               
    String filename = String.valueOf(img.get(i).hashCode());
    String urlString = img.get(i);
    String PATH =  fileWithinMyDir + filename;
    DownloadFromUrl(PATH, urlString);
    img_path.add(PATH);
}

   private void DownloadFromUrl(String fileName, String urlStr) 
   {
      try 
      {
       URL url = new URL(urlStr);
       File file = new File(fileName);
       URLConnection ucon = url.openConnection();
       InputStream is = ucon.getInputStream();
       BufferedInputStream bis = new BufferedInputStream(is);
       ByteArrayBuffer baf = new ByteArrayBuffer(50);
       int current = 0;
       while ((current = bis.read()) != -1) 
       {
        baf.append((byte) current);
       }

       FileOutputStream fos = new FileOutputStream(file);
       fos.write(baf.toByteArray());
       fos.close();
    } 
    catch (IOException e) 
    {
        Log.e("download", e.getMessage());
    }
  }

IMG是包含图片的URL从中我还没有下载一个ArrayList。 img_path是其中我正在存储其中已经存储在图像缓存中的路径的ArrayList。

所保存的路径似乎是如下

/data/data/com.intr.store/app_1219784788

我的包名路径,这是正确的? 我还没有考虑到app_任何地方,但它是如何来的?

在我的其他活动之一,我希望将其加载到图像视图。 我在下面的方法试了一下

File filePath = getFileStreamPath(pth);
        i.setImageDrawable(Drawable.createFromPath(filePath.toString()));

这里PTH是路径和我是图像视图。 但是,应用程式应声说,

06-26 14:40:08.259: E/AndroidRuntime(6531): Caused by: java.lang.IllegalArgumentException: File /data/data/com.intr.store/app_1219784788 contains a path separator

Answer 1:

你已经写了错误的代码。

更换

File cacheDir = getApplicationContext().getDir("", Context.MODE_PRIVATE); 
File fileWithinMyDir = new File(cacheDir, "");

File fileWithinMyDir = getApplicationContext().getFilesDir();

然后

更换

String PATH =  fileWithinMyDir + filename;

String PATH =  fileWithinMyDir.getAbsolutePath() + "/" +filename+".file extension";


文章来源: android - storing image cache in internal memory and reusing it