我收到来自我的 Web 服务的 Base64 blob 响应。我想在我的活动中创建一个图像并将其设置为 Imageview。这是代码片段。抱歉粘贴回复。
bs64img - Base64 字符串响应代码 -
byte[] imageBytes=Base64.decode(bs64img, Base64.DEFAULT);
InputStream is = new ByteArrayInputStream(imageBytes);
Bitmap image=BitmapFactory.decodeStream(is);
ImageView i=(ImageView)findViewById(R.id.imageView1);
i.setImageBitmap(image);
请帮助我。