decodeByteArray值返回null

时间:2014-07-11 06:15:47

标签: android json base64

我正在努力解决android中的一个问题,我需要解析来自JSON的字节数组值并在android设备上显示它。为此我写了这个

String base64Str = jsonObject.getString("dealimage");
   byte[] byteArray =  Base64.decode(base64Str.getBytes(), Base64.DEFAULT) ;
   Bitmap bmp1 = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);
    imgView.setImageBitmap(bmp1);

这里bmp1返回null value.can你请告诉我为什么它返回null和解决方案。

0 个答案:

没有答案