我是靠谱客的博主 超级保温杯,最近开发中收集的这篇文章主要介绍图片保存到sd卡上,删除sd卡上的图片,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

    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卡上的图片所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部