
java里面NameValuePair 这个是什么类型?有什么用
2个回答
推荐于2017-11-22 · 知道合伙人软件行家
关注

展开全部
NameValuePair是简单名称值对节点类型。多用于Java像url发送Post请求。在发送post请求时用该list来存放参数。
例如:
String url="访问网址";
HttpPost httppost=new HttpPost(url); //建立HttpPost对象
//建立一个NameValuePair数组,用于存储传送的数据
List<NameValuePair> params=new ArrayList<NameValuePair>();
//添加参数
params.add(new BasicNameValuePair("键","值"));
//设置编码
httppost.setEntity(new UrlEncodedFormEntity(params,HTTP.UTF_8));
//发送Post,并返回一个HttpResponse对象
HttpResponse response=new DefaultHttpClient().execute(httppost);
例如:
String url="访问网址";
HttpPost httppost=new HttpPost(url); //建立HttpPost对象
//建立一个NameValuePair数组,用于存储传送的数据
List<NameValuePair> params=new ArrayList<NameValuePair>();
//添加参数
params.add(new BasicNameValuePair("键","值"));
//设置编码
httppost.setEntity(new UrlEncodedFormEntity(params,HTTP.UTF_8));
//发送Post,并返回一个HttpResponse对象
HttpResponse response=new DefaultHttpClient().execute(httppost);
展开全部
NameValuePair是简单名称值对节点类型。多用于Java像url发送Post请求。在发送post请求时用该list来存放参数。
例如;
String url="访问网址";
HttpPost httppost=new HttpPost(url); //建立HttpPost对象
//建立一个NameValuePair数组,用于存储传送的数据
List<NameValuePair> params=new ArrayList<NameValuePair>();
//添加参数
params.add(new BasicNameValuePair("键","值"));
//设置编码
httppost.setEntity(new UrlEncodedFormEntity(params,HTTP.UTF_8));
//发送Post,并返回一个HttpResponse对象
HttpResponse response=new DefaultHttpClient().execute(httppost);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询