概述
public String saveImageToGallery(Context context, Bitmap bmp) { // 首先保存图片 File appDir = new File(Environment.getExternalStorageDirectory(), "saveImage"); if (!appDir.exists()) { appDir.mkdir(); } String fileName = System.currentTimeMillis() + ".jpg"; File file = new File(appDir, fileName); try { FileOutputStream fos = new FileOutputStream(file); bmp.compress(Bitmap.CompressFormat.JPEG, 100, fos); fos.flush(); fos.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } // 最后通知图库更新 // String path = Environment.getExternalStorageDirectory() + "/saveImage/" + fileName; // context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.parse("file://" + path))); return Environment.getExternalStorageDirectory() + "/saveImage/" + fileName; }
String s = saveImageToGallery(MainActivity.this, bitmap); File deletefile = new File(s); deletefile.delete();
最后
以上就是超级保温杯为你收集整理的图片保存到sd卡上,删除sd卡上的图片的全部内容,希望文章能够帮你解决图片保存到sd卡上,删除sd卡上的图片所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复