为什么我无法从imageUrl中获取imageview中的图像?

时间:2018-01-11 13:45:33

标签: java android

我想在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。参数srchttp://pyplyn.co/magento2pawan/a.jpg”。

请帮帮我。哪里出错了??

1 个答案:

答案 0 :(得分:-1)

在显示来自网址的图片

时,最好使用Glide或Picasso等库而不是这个