Android 的网络编程(4)-HttpClient接口

使用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
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值