1

我的服务器上有一个图像。图片的 URL 类似于: http ://www.mydomain.com/123456uploaded_image.jpg

我正在尝试将此图像设置为我的 ImageView。这是我尝试过的代码:

    try{
            String url1 = myeventimagearray[position];
            URL ulrn = new URL(url1);
            HttpURLConnection con = (HttpURLConnection)ulrn.openConnection();
            InputStream is = (InputStream) con.getInputStream();
            Bitmap bmp = BitmapFactory.decodeStream(is);
            if (null != bmp)
                iveventimg.setImageBitmap(bmp);
            else
                Log.i("Image","Not set");

        } catch(Exception e) {
            e.printStackTrace();
        }

当我尝试这个时,我的图像视图是空的,即它没有设置图像视图,我在我的 logcat 中得到这个系统错误:

java.lang.ClassCastException:libcore.net.http.FixedLengthInputStream 不能转换为 com.example.eventnotifier.Base64$InputStream

Base46.java 是我从互联网上找到的一个文件,它对 Base64 表示法进行编码和解码。

知道为什么我会收到此 System.error 吗?

谢谢

4

4 回答 4

1

使用 URlImageViewHelper,它将负责将 url 加载到 imageview 中。

参考这个

它会自己处理缓存、后台加载等。

于 2013-05-05T20:58:48.123 回答
0

您可能会遇到异常,因为您正在尝试在主线程上执行网络 io。考虑使用加载器或 AsyncTask 来加载图像。

检查您的日志,我敢打赌您正在自动生成的 catch 块中打印堆栈跟踪。

 new Thread(new Runnable() {
   public void run() {
     final Bitmap b = bitmap = BitmapFactory.decodeStream((InputStream)new URL(myeventimagearray[position]).getContent());
     iveventimg.post(new Runnable() {
       public void run() {
         iveventimg.setImageBitmap(b);
       }
    });
  }
}).start();
于 2013-05-05T20:57:34.380 回答
0

这不是一个简单的答案,但您应该使用缓存系统。

请参阅https://github.com/chrisbanes/Android-BitmapCache以获得出色的效果!

只需将 ImageView 交换为NetworkCacheableImageView然后使用loadImage( "http://....", true );

于 2013-05-05T20:57:49.747 回答
0

使用 Picasso 从 url 获取图像。'com.squareup.picasso:picasso:2.71828'build.gradlejava中实现

Picasso.get()
  .load(url) // http://www.example.com/123456uploaded_image.jpg
  .resize(50, 50)
  .centerCrop()
  .into(imageView)
于 2018-09-05T13:18:12.293 回答