Android HttpClient

使用Apache提供的HttpClient接口进行HTTP操作。

GET方法:

// http地址 
String httpUrl = ;
//HttpGet连接对象 
HttpGet httpRequest = new HttpGet(httpUrl);
//取得HttpClient对象 
HttpClient httpclient = new DefaultHttpClient();
//请求HttpClient,取得HttpResponse 
HttpResponse httpResponse = httpclient.execute(httpRequest);
//请求成功 
if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
//取得返回的字符串 
String strResult = EntityUtils.toString(httpResponse.getEntity());
System.out.println(strResult); 
}else{
System.out.println("请求错误!");
}

POST方法:

// http地址 
String httpUrl = "http://192.168.1.110:8080/httpget.jsp";
//HttpPost连接对象 
HttpPost httpRequest = new HttpPost(httpUrl);
//使用NameValuePair来保存要传递的Post参数 
List<NameValuePair> params = new ArrayList<NameValuePair>();
//添加要传递的参数 
params.add(new BasicNameValuePair("par", "HttpClient_android_Post"));
//设置字符集 
HttpEntity httpentity = new UrlEncodedFormEntity(params, "gb2312");
//请求httpRequest 
httpRequest.setEntity(httpentity);
//取得默认的HttpClient 
HttpClient httpclient = new DefaultHttpClient();
//取得HttpResponse 
HttpResponse httpResponse = httpclient.execute(httpRequest);
//HttpStatus.SC_OK表示连接成功 
if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
//取得返回的字符串 
String strResult = EntityUtils.toString(httpResponse.getEntity());
System.out.println(strResult); 
}else{
System.out.println("请求错误!");
}
时间: 2024-11-05 11:30:27

Android HttpClient的相关文章

Timeout in android httpclient

原文: http://www.cnblogs.com/codingmyworld/archive/2011/08/17/2141706.html   /* 从连接池中取连接的超时时间 */ConnManagerParams.setTimeout(params, 1000);/* 连接超时 */HttpConnectionParams.setConnectionTimeout(params, 2000);/* 请求超时 */HttpConnectionParams.setSoTimeout(par

Android HttpClient自动登陆discuz论坛!

你登陆论坛的时候,我们先看看浏览器干了什么事儿: 用Firefox打开HiPda 的登陆页面,输入用户名和密码,点登陆. 下面是通过firebug插件获取的数据: 可以看到浏览器这个http://www.hi-pda.com/forum/logging.php?action=login&loginsubmit=yes&inajax=1网址发了一个POST请求 看一下它POST的参数是什么: 可以看到一共有7个参数: 第一个cookietime=259200,这个是固定的,直接传这个值过去就

android httpClient 支持HTTPS的2种处理方式

摘自: http://www.kankanews.com/ICkengine/archives/9634.shtml 项目中Android https或http请求地址重定向为HTTPS的地址,相信很多人都遇到了这个异常(无终端认证): javax.net.ssl.SSLPeerUnverifiedException: No peer certificate 1.没遇到过的问题,搜索吧,少年 log里出现这个异常,作者第一次遇到,不知道啥意思.看下字面意思,是ssl协议中没有终端认证.SSL?作

android httpClient 支持HTTPS的访问方式

项目中Android https请求地址遇到了这个异常(无终端认证): javax.net.ssl.SSLPeerUnverifiedException: No peer certificate 是SSL协议中没有终端认证. 没有遇到过的问题,于是无奈的去找度娘....... 看了不少大神的博客后得到的解决方案如下:     /**      * Post请求连接Https服务      * @param serverURL  请求地址      * @param jsonStr    请求报文

Android HttpClient 用法以及乱码解决

一.Post提交 并可以实现多文件上传 // 创建DefaultHttpClient对象 HttpClient httpclient = new DefaultHttpClient(); // 创建一个HttpGet对象 HttpPost post = new HttpPost(realUrl); MultipartEntity entity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE); if (params != nu

Android HttpClient HttpURLConnection相关介绍

Android HttpClient HttpURLConnection相关介绍 遇到一个问题 在android studio上用HttpClient编写网络访问代码的时候,发现该类无法导入并使用....百度了一会儿之后 发现一个强大网友已经解决了.相关博客:http://stackoverflow.com/questions/32153318/httpclient-wont-import-in-android-studio 究其原因:在Android 2.3及以上版本,使用的是HttpURLC

android HttpClient 附带的参数

Sending images can be done using the HttpComponents libraries. Download the latest HttpClient (currently4.0.1) binary with dependencies package and copy apache-mime4j-0.6.jar and httpmime-4.0.1.jar to your project and add them to your Java build path

Android Httpclient重定向问题

使用android自带的httpclient进行模拟登陆等操作时,程序总是会自动重定向,并返回重定向之后的页面. 查看源代码,发现defaultHttpclient会默认设置一个defaultRedirectHandler进行重定向. 解决:继承defaultRedirectHandler并修改isRedirectRequested方法,使其返回false,使得程序判断所有的response都是不重定向的.在设置httpclient的redirectHandler就行了.

转 Android HttpClient post MultipartEntity - Android 上传文件

转自  http://blog.csdn.net/hellohaifei/article/details/9707089 在Android 中使用HttpClient,MultipartEntity 为了发送图片,文件等资源,现在采用开源的org.apache.http.entity.mime.MultipartEntity 一.去官网http://hc.apache.org/downloads.cgi 下载 可以只下载binary,如果可能需要修改源文件的话,可以直接下载source. 二.导

Android进阶 三 android httpClient 支持HTTPS的访问方式

项目中Android https请求地址遇到了这个异常(无终端认证): javax.net.ssl.SSLPeerUnverifiedException: No peer certificate 是SSL协议中没有终端认证. 没有遇到过的问题,于是无奈的去找度娘.......,各种问题,各种纠结...... 看了不少大神的博客后得到的解决方案如下: <span style="font-family:Times New Roman;font-size:14px;">/** *