我想从某个URL从网络获取图像,并将其显示在我的ImageView中。
以下是我正在使用的代码:-

Bitmap bm = null;
    try {
         URL aURL = new URL("stringURL");
         URLConnection conn = aURL.openConnection();
         conn.connect();
         InputStream is = conn.getInputStream();
         BufferedInputStream bis = new BufferedInputStream(is);
         bm = BitmapFactory.decodeStream(bis);
         bis.close();
         is.close();
    }catch (Exception e) {
        // TODO: handle exception
}
    iv.setImageBitmap(bm);


但我无法获得图像

最佳答案

我认为错误在于

URL aURL = new URL("stringURL");


应该没有引号

URL aURL = new URL(stringURL);


如果stringURL是有效的网址,它将起作用...

希望能帮助到你../

07-26 09:27