使用Apache提供的HttpClient接口同样可以进行HTTP操作。

对于GET和POST请求方法的操作有所不同。GET方法的操作代码示例如下:

// http地址          String httpUrl = "http://192.168.1.110:8080/httpget.jsp?par=HttpClient_android_Get";          //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());                  mTextView.setText(strResult);              }              else             {                  mTextView.setText("请求错误!");              }          } 


使用POST方法进行参数传递时,需要使用NameValuePair来保存要传递的参数。,另外,还需要设置所使用的字符集。代码如下所示:

// 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());                  mTextView.setText(strResult);              }              else             {                  mTextView.setText("请求错误!");              }          } 

HttpClient实际上是对Java提供方法的一些封装,在HttpURLConnection中的输入输出流操作,在这个接口中被统一封装成了HttpPost(HttpGet)和HttpResponse,这样,就减少了操作的繁琐性。

另外,在使用POST方式进行传输时,需要进行字符编码。

更多相关文章

  1. ServiceManager & SystemService
  2. Android打开MyEclipse报错:发现了以元素 'd:skin' 开头的无效内容
  3. Android(安卓)源码 URLUTIL 判断文件类型问题
  4. Android中比较常见的Java super关键字
  5. HTTP下载文件时getContentLength()返回-1
  6. Android(安卓)常用的工具类集
  7. Android(安卓)友盟统计
  8. Android学习点点滴滴之获取正在运行的进程
  9. Android对话框使用详解(二)

随机推荐

  1. Android笔记二十三.Android基于事件监听
  2. Bitmap and DrawPoint
  3. Android笔试(一)
  4. Android 学习笔记1:基本架构
  5. Android开发入门教程1-初试Android
  6. js判断浏览器所在的客户端类型
  7. Android解析服务器端发来的xml数据示例
  8. Android Adapter详解(1)
  9. Android绘图之2D绘图基础
  10. android面试题总结