Http异步下载xml和json文件

作者:追风剑情 发布于:2015-8-10 21:49 分类:Android

  1. package com.example.androidtest;
  2.  
  3. import java.io.BufferedReader;
  4. import java.io.IOException;
  5. import java.io.InputStream;
  6. import java.io.InputStreamReader;
  7. import java.net.HttpURLConnection;
  8. import java.net.URL;
  9. import java.net.URLConnection;
  10.  
  11. import javax.xml.parsers.DocumentBuilder;
  12. import javax.xml.parsers.DocumentBuilderFactory;
  13. import javax.xml.parsers.ParserConfigurationException;
  14.  
  15. import org.apache.http.HttpEntity;
  16. import org.apache.http.HttpResponse;
  17. import org.apache.http.StatusLine;
  18. import org.apache.http.client.ClientProtocolException;
  19. import org.apache.http.client.HttpClient;
  20. import org.apache.http.client.methods.HttpGet;
  21. import org.apache.http.impl.client.DefaultHttpClient;
  22. import org.w3c.dom.Document;
  23.  
  24. import android.app.Activity;
  25. import android.os.AsyncTask;
  26. import android.os.Bundle;
  27. import android.util.Log;
  28. import android.widget.Toast;
  29.  
  30. public class NetworkingActivity1 extends Activity {
  31. @Override
  32. protected void onCreate(Bundle savedInstanceState) {
  33. super.onCreate(savedInstanceState);
  34. setContentView(R.layout.activity_networking);
  35. String url = "http://www.devacg.com/test/test.xml";
  36. new DownloadTextTask().execute(url);
  37. }
  38. private InputStream OpenHttpConnection(String urlString) throws IOException
  39. {
  40. InputStream in = null;
  41. int response = -1;
  42. URL url = new URL(urlString);
  43. URLConnection conn = url.openConnection();
  44. if(!(conn instanceof HttpURLConnection))
  45. throw new IOException("Not an HTTP connection");
  46. try {
  47. HttpURLConnection httpConn = (HttpURLConnection) conn;
  48. httpConn.setAllowUserInteraction(false);
  49. httpConn.setInstanceFollowRedirects(true);
  50. httpConn.setRequestMethod("GET");
  51. httpConn.connect();
  52. response = httpConn.getResponseCode();
  53. if(response == HttpURLConnection.HTTP_OK){
  54. in = httpConn.getInputStream();
  55. }
  56. } catch (Exception ex) {
  57. Log.d("AndroidTest", ex.getLocalizedMessage());
  58. throw new IOException("Error connecting");
  59. }
  60. return in;
  61. }
  62. /**
  63. * 下载xml文件
  64. * @param url
  65. */
  66. private void DownloadXML(String url)
  67. {
  68. InputStream in = null;
  69. try {
  70. in = OpenHttpConnection("http://www.devacg.com/test/test.xml");
  71. Document doc = null;
  72. DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
  73. DocumentBuilder db;
  74. db = dbf.newDocumentBuilder();
  75. doc = db.parse(in);
  76. doc.getDocumentElement().normalize();
  77. //TODO:: 以下根据xml的结构进行具体解析
  78. }catch(ParserConfigurationException e){
  79. Log.d("AndroidTest", e.getLocalizedMessage());
  80. }catch(Exception e){
  81. Log.d("AndroidTest", e.getLocalizedMessage());
  82. }
  83. }
  84. /**
  85. * 下载json文件
  86. * @param url json文件url地址
  87. * @return
  88. */
  89. private String DownloadJSON(String url)
  90. {
  91. StringBuilder stringBuilder = new StringBuilder();
  92. HttpClient client = new DefaultHttpClient();
  93. HttpGet httpGet = new HttpGet(url);
  94. try {
  95. HttpResponse response = client.execute(httpGet);
  96. StatusLine statusLine = response.getStatusLine();
  97. int statusCode = statusLine.getStatusCode();
  98. if(statusCode == 200){
  99. HttpEntity entity = response.getEntity();
  100. InputStream content = entity.getContent();
  101. BufferedReader reader = new BufferedReader(new InputStreamReader(content));
  102. String line;
  103. while((line = reader.readLine()) != null){
  104. stringBuilder.append(line);
  105. }
  106. }else{
  107. Log.e("AndroidTest", "Failed to download file");
  108. }
  109. }catch(ClientProtocolException e){
  110. Log.d("AndroidTest", e.getLocalizedMessage());
  111. }catch(IOException e){
  112. Log.d("AndroidTest", e.getLocalizedMessage());
  113. }
  114. return stringBuilder.toString();
  115. }
  116. private String DownloadText(String url)
  117. {
  118. int BUFFER_SIZE = 2000;
  119. InputStream in = null;
  120. try {
  121. in = OpenHttpConnection(url);
  122. } catch (IOException e) {
  123. Log.d("AndroidTest", e.getLocalizedMessage());
  124. return "";
  125. }
  126. InputStreamReader isr = new InputStreamReader(in);
  127. int charRead;
  128. String str = "";
  129. char[] inputBuffer = new char[BUFFER_SIZE];
  130. try {
  131. while((charRead = isr.read(inputBuffer)) > 0) {
  132. String readString = String.copyValueOf(inputBuffer, 0, charRead);
  133. str += readString;
  134. Log.d("AndroidTest", str);
  135. inputBuffer = new char[BUFFER_SIZE];
  136. }
  137. in.close();
  138. } catch (IOException e) {
  139. Log.d("AndroidTest", e.getLocalizedMessage());
  140. return "";
  141. }
  142. return str;
  143. }
  144. private class DownloadTextTask extends AsyncTask<String, Void, String>
  145. {
  146. protected String doInBackground(String... urls){
  147. return DownloadText(urls[0]);
  148. }
  149. protected void onPostExecute(String result){
  150. Toast.makeText(getBaseContext(), result, Toast.LENGTH_LONG).show();
  151. }
  152. }
  153. }

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号