Android 图片存储到指定路径和相册的方法
程序员文章站
2022-06-04 21:41:03
我们在平常项目中,可能会存储一些头像,二维码之类的。这篇文章主要也是介绍自己在存储中会遇到的问题以及一些改进方案。
1.首先是长按保存:这个可以去参照网络上的,无非是自己...
我们在平常项目中,可能会存储一些头像,二维码之类的。这篇文章主要也是介绍自己在存储中会遇到的问题以及一些改进方案。
1.首先是长按保存:这个可以去参照网络上的,无非是自己先要拼接好一个文件路径。注意:io流只能帮忙建文件,但是不能帮忙建目录(路径)。
// 先拼接好一个路径:在内存卡/或是手机内存上做好文件夹 string filepath = environment.getexternalstoragedirectory()+savepath; file localfile = new file(filepath); if (!localfile.exists()) { localfile.mkdir(); }
2.引导具体的文件名和路径:
//拼接好文件路径和名称 file finalimagefile = new file(localfile, system.currenttimemillis() + ".jpg"); if (finalimagefile.exists()) { finalimagefile.delete(); } try { finalimagefile.createnewfile(); } catch (ioexception e) { e.printstacktrace(); }
3.文件的读取:
fileoutputstream fos = null; try { fos = new fileoutputstream(finalimagefile); } catch (filenotfoundexception e) { e.printstacktrace(); } if (bitmap == null) { toast.maketext(this, "图片不存在", 0).show(); return; } bitmap.compress(bitmap.compressformat.jpeg, 100, fos); try { fos.flush(); fos.close(); toast.maketext(this, "图片保存在:"+ finalimagefile.getabsolutepath(), 0).show(); } catch (ioexception e) { e.printstacktrace(); }
4.对于图片,我们也希望存储在固定路径之后,希望也可以在相册中查看该图片。这是可以利用一个广播告诉相册有图片更新。
//发广播告诉相册有图片需要更新,这样可以在图册下看到保存的图片了 intent intent = new intent(intent.action_media_scanner_scan_file); uri uri = uri.fromfile(finalimagefile); intent.setdata(uri); sendbroadcast(intent);
通过以上步骤: 我们可以在指定路径的文件夹和相册中查看存储好的图片了。
效果如下所示:
5.另外,虽然有吐司提示用户存储路径,但是也会找不到。其实,在用真机测试(不带sd卡),图片存储在手机自带内存==》ememed ==》图片所在。
6.存储sd卡,这类操作往往需要权限。所以,不要忘记在androidmanifest中配置权限:
<uses-permission android:name="android.permission.write_settings" /> <uses-permission android:name="android.permission.write_external_storage" /> <uses-permission android:name="android.permission.read_owner_data" />
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。