我试过这段代码
byte decodedIcon[] = null;
byte[] bb = (resposeString).getBytes("utf-8");
decodedIcon = Base64.decodeBase64(bb);
Bitmap bitmap = BitmapFactory.decodeByteArray(decodedIcon, 0,decodedIcon.length);
我包括了 commons-codec-1.3.jar
它仍然返回 null,任何帮助将不胜感激。