当前位置:   article > 正文

android学习二十(使用HTTP协议访问网络)_targetsdkversion34 sendrequest 方法怎么写的

targetsdkversion34 sendrequest 方法怎么写的

使用HttpURLConnection

在Android上发送HTTP请求的方式一般有两种,HttpURLConnection和HttpClient,现在先学习下
 HttpURLConnection的用法。
 首先需要获取到HttpURLConnection的实例,一般只需new 出一个URL对象,并传入目标网络的地址,然后
 调用一下openConnection()方法即可,如下所示:
 URL URL=new URL("http://www.baidu.com");
 HttpURLConnection connection=( HttpURLConnection)url.openConnection();
 得到了 HttpURLConnection的实例之后,我们可以设置一下HTTP请求所使用的方法。常用的方法主要有两个,
 get和post。get表示希望从服务器那里获取数据,而post则表示提交数据给服务器。写法如下:
 connection.setRequestMethod("GET");
    接下来就可以进行一些自由的定制了,比如设置连接超时,读取超时的毫秒数,以及服务器希望得到的一些消息头等。这部分内容根据自己的实际情况进行编写,示例如下:
 connection.setConnectionTimeout(8000);
 connection.setReadTimeout(8000);
 之后调用getInputStream()方法就可以获取到服务器返回的输入流了,剩下的任务就是对输入流进行读取,如下所示:
 InputStream in=connection.getInputStream();
 最后可以调用disconnect()方法将这个HTTP连接关闭掉,如下所示:
 connection.disconnection();
 下面通过一个具体的例子来熟悉下HttpURLConnection的用法。新建NetworkTest项目,首先修改activit_main.xml中的代码,如下所示:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. >
  7. <Button
  8. android:id="@+id/send_request"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:text="send request"
  12. />
  13. <ScrollView
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. >
  17. <TextView
  18. android:id="@+id/response_text"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. />
  22. </ScrollView>
  23. </LinearLayout>


      由于手机屏幕的空间一般都比较小,有些时候过多的内容一屏是显示不下的,借助ScrollView控件的话就可以允许我们以滚动的形式查看屏幕外的那部分内容。另外布局中还放置了一个Button和一个TextView,Button用来发送HTTP请求,TextView用于将服务器返回的数据显示出来。接着修改MainActivity中的代码如下所示:

  1. package com.jack.networktest;
  2. import java.io.BufferedReader;
  3. import java.io.InputStream;
  4. import java.io.InputStreamReader;
  5. import java.net.HttpURLConnection;
  6. import java.net.MalformedURLException;
  7. import java.net.URL;
  8. import android.annotation.SuppressLint;
  9. import android.app.Activity;
  10. import android.os.Bundle;
  11. import android.os.Handler;
  12. import android.os.Message;
  13. import android.util.Log;
  14. import android.view.Menu;
  15. import android.view.View;
  16. import android.view.View.OnClickListener;
  17. import android.widget.Button;
  18. import android.widget.TextView;
  19. /*
  20. 在Android上发送HTTP请求的方式一般有两种,HttpURLConnection和HttpClient,现在先学习下
  21. HttpURLConnection的用法。
  22. 首先需要获取到HttpURLConnection的实例,一般只需new 出一个URL对象,并传入目标网络的地址,然后
  23. 调用一下openConnection()方法即可,如下所示:
  24. URL URL=new URL("http://www.baidu.com");
  25. HttpURLConnection connection=( HttpURLConnection)url.openConnection();
  26. 得到了 HttpURLConnection的实例之后,我们可以设置一下HTTP请求所使用的方法。常用的方法主要有两个,
  27. get和post。get表示希望从服务器那里获取数据,而post则表示提交数据给服务器。写法如下:
  28. connection.setRequestMethod("GET");
  29. 接下来就可以进行一些自由的定制了,比如设置连接超时,读取超时的毫秒数,以及服务器希望得到的一些消息头等。
  30. 这部分内容根据自己的实际情况进行编写,示例如下:
  31. connection.setConnectionTimeout(8000);
  32. connection.setReadTimeout(8000);
  33. 之后调用getInputStream()方法就可以获取到服务器返回的输入流了,剩下的任务就是对输入流进行读取,如下所示:
  34. InputStream in=connection.getInputStream();
  35. 最后可以调用disconnect()方法将这个HTTP连接关闭掉,如下所示:
  36. connection.disconnection();
  37. 下面通过一个具体的例子来熟悉下HttpURLConnection的用法。新建NetworkTest项目,首先修改activit_main.xml中的代码,如下所示:
  38. */
  39. public class MainActivity extends Activity implements OnClickListener{
  40. public static final int SHOW_RESPONSE=0;
  41. private Button sendRequest=null;
  42. private TextView responseText=null;
  43. private Handler handler=new Handler(){
  44. @Override
  45. public void handleMessage(Message msg) {
  46. // TODO Auto-generated method stub
  47. super.handleMessage(msg);
  48. switch(msg.what){
  49. case SHOW_RESPONSE:
  50. String response=(String) msg.obj;
  51. //在这里进行UI操作,将结果显示到界面上
  52. responseText.setText(response);
  53. break;
  54. default:
  55. break;
  56. }
  57. }
  58. };
  59. @Override
  60. protected void onCreate(Bundle savedInstanceState) {
  61. super.onCreate(savedInstanceState);
  62. setContentView(R.layout.activity_main);
  63. sendRequest=(Button) findViewById(R.id.send_request);
  64. responseText=(TextView) findViewById(R.id.response_text);
  65. sendRequest.setOnClickListener(this);
  66. }
  67. @Override
  68. public boolean onCreateOptionsMenu(Menu menu) {
  69. // Inflate the menu; this adds items to the action bar if it is present.
  70. getMenuInflater().inflate(R.menu.main, menu);
  71. return true;
  72. }
  73. @Override
  74. public void onClick(View v) {
  75. // TODO Auto-generated method stub
  76. Log.d("MainActivity", "onClick(View v)!");
  77. if(v.getId()==R.id.send_request){
  78. sendRequestWithHttpURLConnection();
  79. }
  80. }
  81. private void sendRequestWithHttpURLConnection(){
  82. //开启线程来发起网络请求
  83. new Thread(new Runnable(){
  84. @Override
  85. public void run() {
  86. // TODO Auto-generated method stub
  87. HttpURLConnection connection=null;
  88. try {
  89. URL url=new URL("http://www.baidu.com");
  90. connection =(HttpURLConnection) url.openConnection();
  91. connection.setRequestMethod("GET");
  92. connection.setConnectTimeout(8000);
  93. connection.setReadTimeout(8000);
  94. InputStream in=connection.getInputStream();
  95. //下面对获取到的输入流进行读取
  96. BufferedReader reader=new BufferedReader(new InputStreamReader(in));
  97. StringBuilder response=new StringBuilder();
  98. String line;
  99. while((line=reader.readLine())!=null){
  100. response.append(line);
  101. }
  102. Message message=new Message();
  103. message.what=SHOW_RESPONSE;
  104. //将服务器返回的结果存放到Message中
  105. message.obj=response.toString();
  106. handler.sendMessage(message);
  107. } catch (MalformedURLException e) {
  108. // TODO Auto-generated catch block
  109. e.printStackTrace();
  110. }catch(Exception e){
  111. e.printStackTrace();
  112. }finally{
  113. if(connection!=null){
  114. connection.disconnect();
  115. }
  116. }
  117. }
  118. }).start();
  119. }
  120. }

      在send request按钮的点击事件里调用了sendRequestWithHttpURLConnection()方法,,在这个方法中先是开启了一个子线程,然后在子线程里使用 HttpURLConnection发出一条HTTP请求,请求的目标地址就是百度的首页。接着利用BufferedReader对服务器返回的流进行读取,并将结果存放到了一个Message对象中。这里为什么要使用Message对象呢?当然是因为子线程中无法对ui进行操作了。我们希望可以将服务器返回的内容显示到界面上所以就创建了一个Message对象,并使用Handler将它发送出去。之后又在Handler的handMessage()方法中对这条Message进行处理,最终取出结果并设置到TextView上。

在开始运行之前,还需要声明一下网络权限。修改AndroidManifest.xml中的代码,如下所示:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.jack.networktest"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-permission android:name="android.permission.INTERNET"/>
  7. <uses-sdk
  8. android:minSdkVersion="13"
  9. android:targetSdkVersion="17" />
  10. <application
  11. android:allowBackup="true"
  12. android:icon="@drawable/ic_launcher"
  13. android:label="@string/app_name"
  14. android:theme="@style/AppTheme" >
  15. <activity
  16. android:name="com.jack.networktest.MainActivity"
  17. android:label="@string/app_name" >
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN" />
  20. <category android:name="android.intent.category.LAUNCHER" />
  21. </intent-filter>
  22. </activity>
  23. </application>
  24. </manifest>


运行下程序,点击send request按钮,结果如下所示:




     服务器返回给我们的就是这种HTML代码,只是通常情况下浏览器都会将这些代码解析成漂亮的网页后再展示出来。

       如果想要提交数据给服务器,只需要将HTTP请求的方法改成POST,并在获取输入流之前把 要提交的数据写出来即可。注意每条数据都要以键值对的形式存在,数据与数据之间用&符号隔开,比如说我们想要向服务器提交用户名和密码,就可以这样写:
connection.setRequestMethod("POST");
DataOutputStream out=new DataOutputStream(connection.getOutputStream());
out.writeBytes("username=admin&password=123456");

    以上就是HttpURLConnection的基本用法了,下面继续讲解另外一个方法。





使用HttpClient

     

  1. <span style="font-size:18px;"> HttpClient是Apache提供的HTTP网络访问接口,从一开始的时候就被引入到android的api中。它可以
  2. 完成和HttpURLConnection几乎一模一样的效果,但两者的之间的用法却有较大的差别,下面我们看看HttpClient的用法。
  3. 首先我们要知道,HttpClient是一个接口,因此无法创建它的实例,通常情况下都会创建一个DefaultHttpClient的实例,如下所示:
  4. HttpClient httpClient=new DefaultHttpClient();
  5. 接下来如果想要发起一条GET请求,就可以创建一个HttpGet对象,并传入目标的网络地址,然后调用HttpClient的execute()方法即可:
  6. HttpGet httpGet=new HttpGet("http://www.baidu.com");
  7. httpClient.execute(httpGet);
  8. 如果是发起一条POST请求会比GET稍复杂一点,我们需要创建一个HttpPost对象,并传入目标网络地址,如下所示:
  9. HttpPost httpPost=new HttpPost("http://www.baidu.com");
  10. 然后通过一个NameValuePair集合来存放待提交的参数,并将这个参数集合传入到一个UrlEncodedFormEntity中,然后
  11. 调用HttpPost的setEntity()方法将构建好的UrlEncodedFormEntity传入,如下所示:
  12. List<NameValuePair> params=new ArrayList<NameValuePair>();
  13. params.add(new BasicNameValuePair("username","jack"));
  14. params.add(new BasicNameValuePair("password","123456"));
  15. UrlEncodedFormEntity entity=new UrlEncodedFormEntity(params,"utf-8");
  16. httpPost.setEntity(entity);
  17. 接下来的操作就和HttpGet一样了,调用HttpClient的execute()方法,并将HttpPost对象传入即可:
  18. httpClient.execute(httpPost);
  19. 执行execute()方法之后会返回一个HttpResponse对象,服务器所返回的所有信息就会包含在这里面。通常情况下我们都会先取出服务器返回的状态
  20. 码,如果等于200就说明请求和响应都成功了,如下所示:
  21. if(httpResponse.getStatusCode()==200){
  22. //请求和响应都成功了
  23. }
  24. 接下来在这个if判断的内部取出服务返回的具体内容,可以调用getEntity()方法获取到一个HttpEntity实例,然后再用
  25. EntityUtils.toString()这个静态方法将HttpEntity转化成字符串即可,如下所示:
  26. HttpEntity entity=httpResponse.getEntity();
  27. String response=EntityUtils.toString(entity);
  28. 注意如果服务器返回的数据是带中文的,直接调用EntityUtils.toString()方法进行转换会有乱码的情况出现,这个时候
  29. 只需要在转换的时候将字符集指定成utf-8就可以了,如下所示:
  30. String response=EntityUtils.toString(entity,"utf-8");</span>

 HttpClient是Apache提供的HTTP网络访问接口,从一开始的时候就被引入到android的api中。它可以
 完成和HttpURLConnection几乎一模一样的效果,但两者的之间的用法却有较大的差别,下面我们看看HttpClient的用法。
    首先我们要知道,HttpClient是一个接口,因此无法创建它的实例,通常情况下都会创建一个DefaultHttpClient的实例,如下所示:
HttpClient httpClient=new DefaultHttpClient();
接下来如果想要发起一条GET请求,就可以创建一个HttpGet对象,并传入目标的网络地址,然后调用HttpClient的execute()方法即可:
HttpGet httpGet=new HttpGet("http://www.baidu.com");
httpClient.execute(httpGet);
如果是发起一条POST请求会比GET稍复杂一点,我们需要创建一个HttpPost对象,并传入目标网络地址,如下所示:
HttpPost httpPost=new HttpPost("http://www.baidu.com");
  然后通过一个NameValuePair集合来存放待提交的参数,并将这个参数集合传入到一个UrlEncodedFormEntity中,然后
  调用HttpPost的setEntity()方法将构建好的UrlEncodedFormEntity传入,如下所示:
  List<NameValuePair> params=new ArrayList<NameValuePair>();
  params.add(new BasicNameValuePair("username","jack"));
  params.add(new BasicNameValuePair("password","123456"));
  UrlEncodedFormEntity entity=new UrlEncodedFormEntity(params,"utf-8");
  httpPost.setEntity(entity);
  接下来的操作就和HttpGet一样了,调用HttpClient的execute()方法,并将HttpPost对象传入即可:
  httpClient.execute(httpPost);
  执行execute()方法之后会返回一个HttpResponse对象,服务器所返回的所有信息就会包含在这里面。通常情况下我们都会先取出服务器返回的状态
  码,如果等于200就说明请求和响应都成功了,如下所示:
  if(httpResponse.getStatusCode()==200){
  
     //请求和响应都成功了
  }
  接下来在这个if判断的内部取出服务返回的具体内容,可以调用getEntity()方法获取到一个HttpEntity实例,然后再用
  EntityUtils.toString()这个静态方法将HttpEntity转化成字符串即可,如下所示:
  HttpEntity entity=httpResponse.getEntity();
  String response=EntityUtils.toString(entity);
  注意如果服务器返回的数据是带中文的,直接调用EntityUtils.toString()方法进行转换会有乱码的情况出现,这个时候
  只需要在转换的时候将字符集指定成utf-8就可以了,如下所示:
  String response=EntityUtils.toString(entity,"utf-8");





接下来把NetworkTest这个项目改用HttpClient的方式再来实现一遍。

    布局部分完全不用改动,所以现在直接修改MainActivity中的代码,如下所示:

  1. package com.jack.networktest;
  2. import java.io.BufferedReader;
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.InputStreamReader;
  6. import java.net.HttpURLConnection;
  7. import java.net.MalformedURLException;
  8. import java.net.URL;
  9. import org.apache.http.HttpEntity;
  10. import org.apache.http.HttpHost;
  11. import org.apache.http.HttpRequest;
  12. import org.apache.http.HttpResponse;
  13. import org.apache.http.client.ClientProtocolException;
  14. import org.apache.http.client.HttpClient;
  15. import org.apache.http.client.ResponseHandler;
  16. import org.apache.http.client.methods.HttpGet;
  17. import org.apache.http.client.methods.HttpUriRequest;
  18. import org.apache.http.conn.ClientConnectionManager;
  19. import org.apache.http.impl.client.DefaultHttpClient;
  20. import org.apache.http.params.HttpParams;
  21. import org.apache.http.protocol.HttpContext;
  22. import org.apache.http.util.EntityUtils;
  23. import android.annotation.SuppressLint;
  24. import android.app.Activity;
  25. import android.os.Bundle;
  26. import android.os.Handler;
  27. import android.os.Message;
  28. import android.util.Log;
  29. import android.view.Menu;
  30. import android.view.View;
  31. import android.view.View.OnClickListener;
  32. import android.widget.Button;
  33. import android.widget.TextView;
  34. public class MainActivity extends Activity implements OnClickListener{
  35. public static final int SHOW_RESPONSE=0;
  36. private Button sendRequest=null;
  37. private TextView responseText=null;
  38. private Handler handler=new Handler(){
  39. @Override
  40. public void handleMessage(Message msg) {
  41. // TODO Auto-generated method stub
  42. super.handleMessage(msg);
  43. switch(msg.what){
  44. case SHOW_RESPONSE:
  45. String response=(String) msg.obj;
  46. //在这里进行UI操作,将结果显示到界面上
  47. responseText.setText(response);
  48. break;
  49. default:
  50. break;
  51. }
  52. }
  53. };
  54. @Override
  55. protected void onCreate(Bundle savedInstanceState) {
  56. super.onCreate(savedInstanceState);
  57. setContentView(R.layout.activity_main);
  58. sendRequest=(Button) findViewById(R.id.send_request);
  59. responseText=(TextView) findViewById(R.id.response_text);
  60. sendRequest.setOnClickListener(this);
  61. }
  62. @Override
  63. public boolean onCreateOptionsMenu(Menu menu) {
  64. // Inflate the menu; this adds items to the action bar if it is present.
  65. getMenuInflater().inflate(R.menu.main, menu);
  66. return true;
  67. }
  68. @Override
  69. public void onClick(View v) {
  70. // TODO Auto-generated method stub
  71. Log.d("MainActivity", "onClick(View v)!");
  72. if(v.getId()==R.id.send_request){
  73. //sendRequestWithHttpURLConnection();
  74. sendRequestWithHttpClient();
  75. }
  76. }
  77. private void sendRequestWithHttpURLConnection(){
  78. //开启线程来发起网络请求
  79. new Thread(new Runnable(){
  80. @Override
  81. public void run() {
  82. // TODO Auto-generated method stub
  83. HttpURLConnection connection=null;
  84. try {
  85. URL url=new URL("http://www.baidu.com");
  86. connection =(HttpURLConnection) url.openConnection();
  87. connection.setRequestMethod("GET");
  88. connection.setConnectTimeout(8000);
  89. connection.setReadTimeout(8000);
  90. InputStream in=connection.getInputStream();
  91. //下面对获取到的输入流进行读取
  92. BufferedReader reader=new BufferedReader(new InputStreamReader(in));
  93. StringBuilder response=new StringBuilder();
  94. String line;
  95. while((line=reader.readLine())!=null){
  96. response.append(line);
  97. }
  98. Message message=new Message();
  99. message.what=SHOW_RESPONSE;
  100. //将服务器返回的结果存放到Message中
  101. message.obj=response.toString();
  102. handler.sendMessage(message);
  103. } catch (MalformedURLException e) {
  104. // TODO Auto-generated catch block
  105. e.printStackTrace();
  106. }catch(Exception e){
  107. e.printStackTrace();
  108. }finally{
  109. if(connection!=null){
  110. connection.disconnect();
  111. }
  112. }
  113. }
  114. }).start();
  115. }
  116. private void sendRequestWithHttpClient(){
  117. new Thread(new Runnable(){
  118. @Override
  119. public void run() {
  120. // TODO Auto-generated method stub
  121. try{
  122. HttpClient httpClient=new DefaultHttpClient() ;
  123. HttpGet httpGet=new HttpGet("http://www.baidu.com");
  124. HttpResponse httpResponse=httpClient.execute(httpGet);
  125. if(httpResponse.getStatusLine().getStatusCode()==200){
  126. //请求和响应都成功了
  127. HttpEntity entity=httpResponse.getEntity();
  128. String response=EntityUtils.toString(entity,"utf-8");
  129. Message message=new Message();
  130. message.what=SHOW_RESPONSE;
  131. //将服务器返回的结果存放到Message中
  132. message.obj=response.toString();
  133. handler.sendMessage(message);
  134. }
  135. }catch(Exception e){
  136. e.printStackTrace();
  137. }
  138. }
  139. }).start();
  140. }
  141. }

上面的代码只是添加了一个sendRequestWithHttpClient()方法,并在send request按钮的点击事件里去调用这个方法。在这个方法中同样还是先开启一个子线程,然后在子线程里使用HttpClient发出一条HTTP请求,请求的目标地址还是百度的首页。然后将服务器返回的数据存放到Message对象中,并用Handler将Message发送出去。

   现在重新运行程序,点击send request按钮,你会发现和上面的结果一样,由此证明,使用HttpClient来发送Http请求的功能也已经实现了。


经过上面的练习,应该把HttpURLConnection 和  HttpClient的基本用法掌握的差不多了。

http://blog.csdn.net/j903829182/article/details/42440155



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/887235
推荐阅读
相关标签
  

闽ICP备14008679号