使用universal-image-loader中出现的EOFException解决方法

直接贴代码

public class HttpClientImageDownloader extends BaseImageDownloader implements
		ImageDownloader {

	public HttpClientImageDownloader(Context context) {
		super(context);
	}
	@Override
	protected InputStream getStreamFromFile(String imageUri, Object extra)
			throws IOException {
		String filePath = Scheme.FILE.crop(imageUri);
		File file = new File(filePath);
		if(!file.exists())
			file.createNewFile();
		return new ContentLengthInputStream(new BufferedInputStream(new FileInputStream(filePath), BUFFER_SIZE),
				(int) new File(filePath).length());
	}
	@SuppressLint("UseValueOf")
	@Override
	protected InputStream getStreamFromNetwork(String imageUri, Object extra)
			throws IOException {
//		HttpURLConnection conn = createConnection(imageUri, extra);
//		
//		int redirectCount = 0;
//		while (conn.getResponseCode() / 100 == 3 && redirectCount < MAX_REDIRECT_COUNT) {
//			conn = createConnection(conn.getHeaderField("Location"), extra);
//			redirectCount++;
//		}<span style="font-family: Arial, Helvetica, sans-serif;">//EOFException来自conn.getResponseCode()</span>

//		InputStream imageStream;
//		try {
//			imageStream = conn.getInputStream();
//		} catch (IOException e) {
//			// Read all data to allow reuse connection (http://bit.ly/1ad35PY)
//			IoUtils.readAndCloseStream(conn.getErrorStream());
//			throw e;
//		}
		DefaultHttpClient client = new DefaultHttpClient();
		HttpGet request = new HttpGet(imageUri);
		request.getParams().setParameter("http.socket.timeout",
				new Integer(connectTimeout));
		request.addHeader("Pragma", "no-cache");
		request.addHeader("Cache-Control", "no-cache");
		request.addHeader("Charset", "UTF-8");
		HttpResponse httpResponse = client.execute(request);
		HttpEntity entity = httpResponse.getEntity();
		InputStream imageStream = entity.getContent();
		return new ContentLengthInputStream(new BufferedInputStream(imageStream, BUFFER_SIZE), (int)entity.getContentLength());
	}

}
另外配置为自己的imageloader
ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(getApplicationContext())
				.defaultDisplayImageOptions(defaultOptions)
				.threadPriority(Thread.NORM_PRIORITY - 2)
				.denyCacheImageMultipleSizesInMemory()
				.threadPoolSize(3)
				.imageDownloader(new HttpClientImageDownloader(this ))
				.tasksProcessingOrder(QueueProcessingType.LIFO)
				.memoryCache(new WeakMemoryCache())
				.build();


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值