android 发送一个http请求的问题

我是个新手,目前想在android app中发起一个简单的http请求,该请求到一个php页面左的网页上取一些数据,有没有可以通过后台运行去网站取数据并解析的功能?

第一步,把下面的代码加入到你的 manifest 文件中,目的是放开网络访问权限
<uses-permission android:name="android.permission.INTERNET" />

然后就可以使用 Apache http client 访问页面了,在android中非常的简单就能完成

1
2
3
4
5
6
7
8
9
10
11
12
13
14
HttpClient httpclient = new DefaultHttpClient();
     HttpResponse response = httpclient.execute( new HttpGet(URL));
     StatusLine statusLine = response.getStatusLine();
     if (statusLine.getStatusCode() == HttpStatus.SC_OK){
         ByteArrayOutputStream out = new ByteArrayOutputStream();
         response.getEntity().writeTo(out);
         out.close();
         String responseString = out.toString();
         //..more logic
     } else {
         //Closes the connection.
         response.getEntity().getContent().close();
         throw new IOException(statusLine.getReasonPhrase());
     }

如果你想在后台访问或者异步的方式运行,需要继承 AsyncTask,AsyncTask是专门单独线程跑后台任务的类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
class RequestTask extends AsyncTask<string, string= "" string,= "" >{
 
     @Override
     protected String doInBackground(String... uri) {
         HttpClient httpclient = new DefaultHttpClient();
         HttpResponse response;
         String responseString = null ;
         try {
             response = httpclient.execute( new HttpGet(uri[ 0 ]));
             StatusLine statusLine = response.getStatusLine();
             if (statusLine.getStatusCode() == HttpStatus.SC_OK){
                 ByteArrayOutputStream out = new ByteArrayOutputStream();
                 response.getEntity().writeTo(out);
                 out.close();
                 responseString = out.toString();
             } else {
                 //Closes the connection.
                 response.getEntity().getContent().close();
                 throw new IOException(statusLine.getReasonPhrase());
             }
         } catch (ClientProtocolException e) {
             //TODO Handle problems..
         } catch (IOException e) {
             //TODO Handle problems..
         }
         return responseString;
     }
 
     @Override
     protected void onPostExecute(String result) {
         super .onPostExecute(result);
         //Do anything with response..
     }
}</string,>

最后你可以通过如下的方式调用

new RequestTask().execute("http://stackoverflow.com");


原文地址:http://www.itmmd.com/201410/91.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值