android之HttpPostHttpGet使用方法介绍
短信预约 -IT技能 免费直播动态提醒
直接讲用法,先知道怎么用,再知道怎么回事
1、HttpPost
代码如下:
try{
//创建连接
HttpClient httpClient = new DefaultHttpClient();
HttpPost post = new HttpPost(url);
//设置参数,仿html表单提交
List<NameValuePair> paramList = new ArrayList<NameValuePair>();
BasicNameValuePair param = new BasicNameValuePair("param1",paramValue);
paramList.add(param);
post.setEntity(new UrlEnodedFormEntity(paramList,HTTP.UTF-8));
//发送HttpPost请求,并返回HttpResponse对象
HttpResponse httpResponse = httpClient.execute(post);
// 判断请求响应状态码,状态码为200表示服务端成功响应了客户端的请求
if(httpResponse.getStatusLine().getStatusCode() == 200){
//获取返回结果
String result = EntityUtils.toString(httpResponse.getEntity());
}
}catch(Exception e){}
2、HttpGet
代码如下:
try{
HttpClient httpClient = new DefaultHttpClient();
//仿地址链接直接跟参数,如:http://127.0.0.1:8080/test/test.php?name=;
HttpGet httpGet = new HttpGet(url);
HttpResponse httpResponse = httpClient.execute(httpGet);
if(httpResponse.getStatusLine().getStatusCode()==200){
String result = EntityUtils.toString(httpResponse.getEntity());
}
}catch(Exception e){}
您可能感兴趣的文章:详解Android:向服务器提供数据之get、post方式android AsynTask处理返回数据和AsynTask使用get,post请求Android中post和get的提交方式【三种】Android中使用OkHttp包处理HTTP的get和post请求的方法Android中使用HttpURLConnection实现GET POST JSON数据与下载图片android平台HttpGet、HttpPost请求实例android使用url connection示例(get和post数据获取返回数据)Android发送GET与POST请求的DEMO详解Android HttpClient GET或者POST请求基本使用方法安卓GET与POST网络请求的三种方式
1、HttpPost
代码如下:
try{
//创建连接
HttpClient httpClient = new DefaultHttpClient();
HttpPost post = new HttpPost(url);
//设置参数,仿html表单提交
List<NameValuePair> paramList = new ArrayList<NameValuePair>();
BasicNameValuePair param = new BasicNameValuePair("param1",paramValue);
paramList.add(param);
post.setEntity(new UrlEnodedFormEntity(paramList,HTTP.UTF-8));
//发送HttpPost请求,并返回HttpResponse对象
HttpResponse httpResponse = httpClient.execute(post);
// 判断请求响应状态码,状态码为200表示服务端成功响应了客户端的请求
if(httpResponse.getStatusLine().getStatusCode() == 200){
//获取返回结果
String result = EntityUtils.toString(httpResponse.getEntity());
}
}catch(Exception e){}
2、HttpGet
代码如下:
try{
HttpClient httpClient = new DefaultHttpClient();
//仿地址链接直接跟参数,如:http://127.0.0.1:8080/test/test.php?name=;
HttpGet httpGet = new HttpGet(url);
HttpResponse httpResponse = httpClient.execute(httpGet);
if(httpResponse.getStatusLine().getStatusCode()==200){
String result = EntityUtils.toString(httpResponse.getEntity());
}
}catch(Exception e){}
您可能感兴趣的文章:详解Android:向服务器提供数据之get、post方式android AsynTask处理返回数据和AsynTask使用get,post请求Android中post和get的提交方式【三种】Android中使用OkHttp包处理HTTP的get和post请求的方法Android中使用HttpURLConnection实现GET POST JSON数据与下载图片android平台HttpGet、HttpPost请求实例android使用url connection示例(get和post数据获取返回数据)Android发送GET与POST请求的DEMO详解Android HttpClient GET或者POST请求基本使用方法安卓GET与POST网络请求的三种方式
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341