我需要显示从servlet到我的android应用程序的图像我该怎么办呢请有人帮我提前谢谢
答案 0 :(得分:0)
我建议采取以下步骤:
FileInputStream fis;
Bitmap image;
try {
fis = new FileInputStream("path to downloaded image");
Bitmap image = BitmapFactory.decodeStream(fis);
} catch (FileNotFoundException e) {
// handle exception
}
4。将位图设置为ImageView。