SharedPreference 保存图像数据

原则上SharedPreferences 只能将字符串以key-value形式保存,但可以采用编码的方式将任何二进制数据转化成字符串形式,从而将二进制数据保存在SharedPreferences文件中。所以可以将图像转化成字符串再保存到SharedPreferences中,将二进制转化成字符串的编码格式采用了Base64。将图像保存到SharedPreferences文件代码如下:

SharedPreferences sharedPreferences = getSharedPreferences("image_file",Activity.MODE_PRIVATE);
        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        ((BitmapDrawable)imgView.getDrawable()).getBitmap()
                .compress(Bitmap.CompressFormat.JPEG,50,stream);
        String imageBase64 = new String(Base64.encodeToString(stream.toByteArray(), Base64.DEFAULT));
        SharedPreferences.Editor editor = sharedPreferences.edit();
        editor.putString("SaveImage",imageBase64);
        editor.commit();

首先获取ImageView组件中的图像,压缩成JPEG格式,并将压缩结果保存在ByteArrayOutputStream对象中,使用Base64编码格式转成字符串后保存。

从SharedPreferences中读取图像数据代码:

String resImageBase64 = sharedPreferences.getString("SaveImage","");
        byte[] base64byte = Base64.decode(imageBase64,Base64.DEFAULT);
        ByteArrayInputStream instream = new ByteArrayInputStream(base64byte);
        spImg.setImageDrawable(Drawable.createFromStream(instream,"res_img"));

    原文作者:BrcLi
    原文地址: https://blog.csdn.net/BrcLi/article/details/79450287
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞