Http异步下载文本

作者:追风剑情 发布于:2015-8-6 22:42 分类:Android

活动

  1. package com.example.androidtest;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.InputStreamReader;
  6. import java.net.HttpURLConnection;
  7. import java.net.URL;
  8. import java.net.URLConnection;
  9.  
  10. import android.app.Activity;
  11. import android.os.AsyncTask;
  12. import android.os.Bundle;
  13. import android.util.Log;
  14. import android.widget.Toast;
  15.  
  16. public class NetworkingActivity1 extends Activity {
  17. @Override
  18. protected void onCreate(Bundle savedInstanceState) {
  19. super.onCreate(savedInstanceState);
  20. setContentView(R.layout.activity_networking);
  21. String url = "http://www.devacg.com/test/test.xml";
  22. new DownloadTextTask().execute(url);
  23. }
  24. private InputStream OpenHttpConnection(String urlString) throws IOException
  25. {
  26. InputStream in = null;
  27. int response = -1;
  28. URL url = new URL(urlString);
  29. URLConnection conn = url.openConnection();
  30. if(!(conn instanceof HttpURLConnection))
  31. throw new IOException("Not an HTTP connection");
  32. try {
  33. HttpURLConnection httpConn = (HttpURLConnection) conn;
  34. httpConn.setAllowUserInteraction(false);
  35. httpConn.setInstanceFollowRedirects(true);
  36. httpConn.setRequestMethod("GET");
  37. httpConn.connect();
  38. response = httpConn.getResponseCode();
  39. if(response == HttpURLConnection.HTTP_OK){
  40. in = httpConn.getInputStream();
  41. }
  42. } catch (Exception ex) {
  43. Log.d("AndroidTest", ex.getLocalizedMessage());
  44. throw new IOException("Error connecting");
  45. }
  46. return in;
  47. }
  48. private String DownloadText(String url)
  49. {
  50. int BUFFER_SIZE = 2000;
  51. InputStream in = null;
  52. try {
  53. in = OpenHttpConnection(url);
  54. } catch (IOException e) {
  55. Log.d("AndroidTest", e.getLocalizedMessage());
  56. return "";
  57. }
  58. InputStreamReader isr = new InputStreamReader(in);
  59. int charRead;
  60. String str = "";
  61. char[] inputBuffer = new char[BUFFER_SIZE];
  62. try {
  63. while((charRead = isr.read(inputBuffer)) > 0) {
  64. String readString = String.copyValueOf(inputBuffer, 0, charRead);
  65. str += readString;
  66. Log.d("AndroidTest", str);
  67. inputBuffer = new char[BUFFER_SIZE];
  68. }
  69. in.close();
  70. } catch (IOException e) {
  71. Log.d("AndroidTest", e.getLocalizedMessage());
  72. return "";
  73. }
  74. return str;
  75. }
  76. private class DownloadTextTask extends AsyncTask<String, Void, String>
  77. {
  78. protected String doInBackground(String... urls){
  79. return DownloadText(urls[0]);
  80. }
  81. protected void onPostExecute(String result){
  82. Toast.makeText(getBaseContext(), result, Toast.LENGTH_LONG).show();
  83. }
  84. }
  85. }

运行效果

text.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号