android-将图像缓存存储在内部存储器中并重新使用

android-将图像缓存存储在内部存储器中并重新使用,第1张

概述在我的应用程序中,我试图将图像存储在内部存储器中,以便只能在我的应用程序中使用它,而不能以其他方式看到它.我以以下方式将图像缓存存储在内部存储器中FilecacheDir=getApplicationContext().getDir("",Context.MODE_PRIVATE);FilefileWithinMyDir=newFile(cacheDir

在我的应用程序中,我试图将图像存储在内部存储器中,以便只能在我的应用程序中使用它,而不能以其他方式看到它.

我以以下方式将图像缓存存储在内部存储器中

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是一个arrayList,其中包含我尚未从中下载的图像URL.
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

解决方法:

您写错了代码.

更换

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-将图像缓存存储在内部存储器中并重新使用全部内容,希望文章能够帮你解决android-将图像缓存存储在内部存储器中并重新使用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1095277.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存