我想在ImageView
中显示一个图像,该图像是从我在函数中指定的url中获取的。以下是尝试获取图像的功能。
public Bitmap getBitmapFromUrl(String src){
try{
URL url = new URL(src);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoInput(true);
connection.connect();
InputStream inputStream = connection.getInputStream();
Bitmap btmp = BitmapFactory.decodeStream(inputStream);
return btmp;
}catch (Exception e){
e.printStackTrace();
return null;
}
}
上述功能正在返回null
。参数src
“http://pyplyn.co/magento2pawan/a.jpg”。
请帮帮我。哪里出错了??
答案 0 :(得分:-1)
在显示来自网址的图片
时,最好使用Glide或Picasso等库而不是这个