我是靠谱客的博主 超级保温杯,这篇文章主要介绍图片保存到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卡上内容请搜索靠谱客的其他文章。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部