0

使用 UIL 版本 1.8.0 加载 Twitter 个人资料图片网址: http ://api.twitter.com/1/users/profile_image/smashingmag.jpg?size=bigger

带有磁盘和内存缓存。图像无法加载并将 302 重定向随附的 html 存储在磁盘缓存文件中。图像永远不会成功加载或解码(我的 SimpleImageLoadingListener 的 onLoadingFailed 方法会为每个 twitter 个人资料图像 url 调用)。任何人都可以使用 UIL 加载一个简单的推特图片网址吗?

这是该网址的缓存文件的内容:

猫 /mnt/sdcard/MyCache/CacheDir/1183818163

<html><body>You are being <a href="https://si0.twimg.com/profile_images/3056708597/6438618743e2b2d7d663fd43412bdae8_bigger.png">redirected</a>.</body></html>

这是我的配置:

File cacheDir = StorageUtils.getOwnCacheDirectory(FrequencyApplication.getContext(), "MyCache/CacheDir");

DisplayImageOptions defaultOptions = new DisplayImageOptions.Builder()
    .cacheInMemory()
    .cacheOnDisc()
    .imageScaleType(ImageScaleType.IN_SAMPLE_POWER_OF_2)
    .build();

ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(FrequencyApplication.getContext())
    .memoryCacheExtraOptions(480, 800)
    .threadPoolSize(20)
    .threadPriority(Thread.MIN_PRIORITY)
    .offOutOfMemoryHandling()
    .memoryCache(new UsingFreqLimitedMemoryCache(2 * 1024 * 1024))
    .discCache(new TotalSizeLimitedDiscCache(cacheDir, 30 * 1024 * 1024))
    .discCacheFileNameGenerator(new HashCodeFileNameGenerator())
    .imageDownloader(new BaseImageDownloader(MyApplication.getContext(), 20 * 1000, 30 * 1000))
    .tasksProcessingOrder(QueueProcessingType.FIFO)
    .defaultDisplayImageOptions(defaultOptions)
    .build();
ImageLoader.getInstance().init(config);
4

1 回答 1

4

似乎HttpURLConnection无法自动处理从 HTTP 到 HTTPS 的重定向(链接)。我将在下一个 lib 版本中修复它。

现在修复 - 扩展BaseImageDownloader并将其设置为配置:

public class MyImageDownloader implements BaseImageDownloader {
    @Override
    protected InputStream getStreamFromNetwork(URI imageUri, Object extra) throws IOException {
        HttpURLConnection conn = (HttpURLConnection) imageUri.toURL().openConnection();
        conn.setConnectTimeout(connectTimeout);
        conn.setReadTimeout(readTimeout);
        conn.connect();
        while (conn.getResponseCode() == 302) { // >=300 && < 400
            String redirectUrl = conn.getHeaderField("Location");
            conn = (HttpURLConnection) new URL(redirectUrl).openConnection();
            conn.setConnectTimeout(connectTimeout);
            conn.setReadTimeout(readTimeout);
            conn.connect();
        }
        return new FlushedInputStream(conn.getInputStream(), BUFFER_SIZE);
    }
}
于 2013-03-05T15:05:45.150 回答