已解决使用android-async-http网络请求框架出现Header[]不识别错误的解决办法

Posted 风之叶语

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了已解决使用android-async-http网络请求框架出现Header[]不识别错误的解决办法相关的知识,希望对你有一定的参考价值。

今天想要测试下后台的接口是不是正确,于是乎就想使用android-async-http网络请求框架来处理请求,导入Jar包后,开始写了一个网络请求的类,类详情如下:

package com.example.xxxxx;

import com.loopj.android.http.AsyncHttpClient;
import com.loopj.android.http.JsonHttpResponseHandler;
import com.loopj.android.http.RequestParams;
/**
 * 网络请求类
 * @author WindyStory
 *
 */
public class URLManage 

	private static AsyncHttpClient client = new AsyncHttpClient(); // 实例话对象

	static 
		client.setTimeout(5000); // 设置链接超时,如果不设置,默认为10s
	
	public static void getWeatherInfos(String cityname, JsonHttpResponseHandler res) 
		RequestParams params = new RequestParams(); // 绑定参数
		params.put("username", "张三");
		params.put("checkcode", "t7vJMDwZ8xbwv9he");
		params.put("area", "石家庄");
		params.put("type", 2);
		get("http://127.0.0.1:8080/ShopMail/api/Area", params, res);
	
	
	private static void get(String urlString, RequestParams params, JsonHttpResponseHandler res) 
		//System.out.println((urlString + "?" + params.toString()));
		client.get(urlString, params, res);
	


写完这个网络请求类以后,开始写主Activity类:

package com.example.xxxxx;

import com.loopj.android.http.JsonHttpResponseHandler;
import android.app.Activity;
import android.os.Bundle;
 
public class MainActivity extends Activity 
	@Override
	protected void onCreate(Bundle savedInstanceState) 
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		URLManage.getWeatherInfos("", new JsonHttpResponseHandler()
			public void onSuccess(int statusCode, org.apache.http.Header[] headers, String responseString) 
				//do something........
			;
		);
	

发现

org.apache.http.Header[] headers
这个类竟然不识别报了错还有工程也报了错说需要配置什么东西,错误截图如下:

后来经多次查询,才知道这个Hear是使用了apache的httpcore.jar包下的的Hear,所以只需要引入这个包就能解决问题了


httpcore.jar 下载

 android-async-http下载




以上是关于已解决使用android-async-http网络请求框架出现Header[]不识别错误的解决办法的主要内容,如果未能解决你的问题,请参考以下文章

android-async-http框架源码分析

android-async-http 封装

android-async-http 封装

AsyncHttpClient 实战总结及思考

Android-async-http 的用法

android-async-http框架