共计 4248 个字符,预计需要花费 11 分钟才能阅读完成。
Android 中提供的 HttpURLConnection 和 HttpClient 接口能够用来开发 HTTP 程序。以下是自己在学习中的总结与演绎。
1. HttpURLConnection 接口
首先须要明确的是,Http 通信中的 POST 和 GET 申请形式的不同。GET 能够取得动态页面,也能够把参数放在 URL 字符串前面,传递给服务器。而 POST 办法的参数是放在 Http 申请中。因而,在编程之前,该当首先明确应用的申请办法,而后再依据所应用的形式抉择相应的编程形式。
HttpURLConnection 是继承于 URLConnection 类,二者都是抽象类。其对象次要通过 URL 的 openConnection 办法取得。创立办法如下代码所示:
1.URL url = new URL("http://www.51cto.com/index.jsp?par=123456");
2. HttpURLConnection urlConn=(HttpURLConnection)url.openConnection();
通过以下办法能够对申请的属性进行一些设置,如下所示:
1. // 设置输出和输入流
2. urlConn.setDoOutput(true);
3. urlConn.setDoInput(true);
4. // 设置申请形式为 POST
5. urlConn.setRequestMethod("POST");
6. //POST 申请不能应用缓存
7. urlConn.setUseCaches(false);
8. // 敞开连贯
9. urlConn.disConnection();
HttpURLConnection 默认应用 GET 形式,例如上面代码所示:
1. // 应用 HttpURLConnection 关上连贯
2.HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
3. // 失去读取的内容 (流)
4.InputStreamReader in = new InputStreamReader(urlConn.getInputStream());
5. // 为输入创立 BufferedReader
6. BufferedReader buffer = new BufferedReader(in); 7. String inputLine = null;
8. // 应用循环来读取取得的数据
9. while (((inputLine = buffer.readLine()) != null))
10. {
11. // 咱们在每一行前面加上一个 "\n" 来换行
12. resultData += inputLine + "\n";
13. }
14. // 敞开 InputStreamReader
15. in.close();
16. // 敞开 http 连贯
17. urlConn.disconnect();
如果须要应用 POST 形式,则须要 setRequestMethod 设置。代码如下:
1.String httpUrl = "http://192.168.1.110:8080/httpget.jsp";
2. // 取得的数据
3. String resultData = "";
4. URL url = null;
5. try
6. {
7. // 结构一个 URL 对象
8. url = new URL(httpUrl);
9. }
10. catch (MalformedURLException e)
11. {12. Log.e(DEBUG_TAG, "MalformedURLException");
13. }
14. if (url != null)
15. {
16. try
17. {
18. // 应用 HttpURLConnection 关上连贯
19. HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
20. // 因为这个是 post 申请, 设立须要设置为 true
21. urlConn.setDoOutput(true);
22. urlConn.setDoInput(true);
23. // 设置以 POST 形式
24. urlConn.setRequestMethod("POST");
25. // Post 申请不能应用缓存
26. urlConn.setUseCaches(false);
27. urlConn.setInstanceFollowRedirects(true);
28. // 配置本次连贯的 Content-type,配置为 application/x-www-form-urlencoded 的
29. urlConn.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
30. // 连贯,从 postUrl.openConnection() 至此的配置必须要在 connect 之前实现,31. // 要留神的是 connection.getOutputStream 会隐含的进行 connect。32. urlConn.connect();
33. //DataOutputStream 流
34.DataOutputStream out = new DataOutputStream(urlConn.getOutputStream());
35. // 要上传的参数
36.String content = "par=" + URLEncoder.encode("ABCDEFG", "gb2312");
37. // 将要上传的内容写入流中
38. out.writeBytes(content);
39. // 刷新、敞开
40. out.flush();
41. out.close();
2. HttpClient 接口
应用 Apache 提供的 HttpClient 接口同样能够进行 HTTP 操作。
对于 GET 和 POST 申请办法的操作有所不同。GET 办法的操作代码示例如下:
1. // http 地址
2.String httpUrl = "http://192.168.1.110:8080/httpget.jsp?par=HttpClient_android_Get";
3. //HttpGet 连贯对象
4. HttpGet httpRequest = new HttpGet(httpUrl);
5. // 获得 HttpClient 对象
6. HttpClient httpclient = new DefaultHttpClient();
7. // 申请 HttpClient,获得 HttpResponse
8.HttpResponse httpResponse = httpclient.execute(httpRequest);
9. // 申请胜利
10.
if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK)
11. {
12. // 获得返回的字符串
13. String strResult = EntityUtils.toString(httpResponse.getEntity());
14. mTextView.setText(strResult);
15. }
16. else
17. {18. mTextView.setText("申请谬误!");
19. }
20. }
应用 POST 办法进行参数传递时,须要应用 NameValuePair 来保留要传递的参数。,另外,还须要设置所应用的字符集。代码如下所示:
1. // http 地址
2. String httpUrl = "http://192.168.1.110:8080/httpget.jsp";
3. //HttpPost 连贯对象
4. HttpPost httpRequest = new HttpPost(httpUrl);
5. // 应用 NameValuePair 来保留要传递的 Post 参数
6. List<NameValuePair> params = new ArrayList<NameValuePair>();
7. // 增加要传递的参数
8. params.add(new BasicNameValuePair("par", "HttpClient_android_Post"));
9. // 设置字符集
10. HttpEntity httpentity = new UrlEncodedFormEntity(params, "gb2312");
11. // 申请 httpRequest
12. httpRequest.setEntity(httpentity);
13. // 获得默认的 HttpClient
14. HttpClient httpclient = new DefaultHttpClient();
15. // 获得 HttpResponse
16. HttpResponse httpResponse = httpclient.execute(httpRequest);
17. //HttpStatus.SC_OK 示意连贯胜利
18.
if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK)
19. {
20. // 获得返回的字符串
21. String strResult = EntityUtils.toString(httpResponse.getEntity());
22. mTextView.setText(strResult);
23. }
24. else
25. {26. mTextView.setText("申请谬误!");
27. }
28. }
HttpClient 实际上是对 Java 提供办法的一些封装,在 HttpURLConnection 中的输入输出流操作,在这个接口中被对立封装成了 HttpPost(HttpGet) 和 HttpResponse,这样,就缩小了操作的繁琐性。
另外,在应用 POST 形式进行传输时,须要进行字符编码。