我将 Bitmap 解码为 String 并将ut放入 SharedPreferences 。
然后我把它拿到了PhotoEncoded
中
在这里,我想将其解码为byte [],但它显示错误:
String PhotoEncoded = prefs.getString("AccountPhotoString",null);
byte[] b = PhotoEncoded.getBytes();
byte[] imageAsBytes = Base64.decode(b);//error
这有什么不对?
答案 0 :(得分:0)
我找到了解决方案
PhotoEncoded = prefs.getString("AccountPhoto",null);
byte[] b = PhotoEncoded.getBytes();
byte[] imageAsBytes = Base64.decode(b,Base64.DEFAULT);