上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 1 第5 天Android 基础 第五章网络编程(下)............................................................................................................................................ 2 1.1 前言............................................................................................................................................................... 2 1.1.1 需求说明............................................................................................................................................ 2 1.1.2 服务器搭建........................................................................................................................................ 2 1.1.3 编写布局............................................................................................................................................ 5 1.1.4 添加权限............................................................................................................................................ 6 1.2 使用HttpURLConnection 提交数据........................................................................................................... 6 1.2.1 代码.....................................................................................................................................................6 1.2.2 总结...................................................................................................................................................11 1.3 使用HttpClient 提交数据.......................................................................................................................... 11 1.3.1 get 方式提交......................................................................................................................................11 1.3.2 post 方式提交....................................................................................................................................13 1.3.3 总结.................................................................................................................................................. 14 1.4 使用AsyncHttpClient 框架提交数据........................................................................................................16 1.4.1 get 方式提交..................................................................................................................................... 17 1.4.2 post 方式提交....................................................................................................................................18 1.4.3 总结.................................................................................................................................................. 19 1.5 JavaSE 实现多线程下载............................................................................................................................. 21 1.5.1 多线程下载原理.............................................................................................................................. 21 1.5.2 代码实现.......................................................................................................................................... 21 1.6 Android 实现多线程下载............................................................................................................................25 1.6.1 ProgressBar 的使用...........................................................................................................................26 1.6.2 编写布局.......................................................................................................................................... 26 1.6.3 编写代码.......................................................................................................................................... 28 1.6.4 添加权限.......................................................................................................................................... 33 1.7 xUtils 实现多线程下载............................................................................................................................... 33 1.7.1 xUtils 简介.........................................................................................................................................33 1.7.2 xUtils 之HttpUtils 的使用............................................................................................................... 34 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 2 第五章网络编程(下) 使用HttpURLConnection 提交数据 使用HttpClient 提交数据 使用AsyncHttpClient 框架提交数据 Android 实现多线程下载 使用xUtils 框架实现多线程下载 1.1 前言 移动互联网时代哪个app 不需要跟服务器进行交互呢?Android 给服务器提交数据的方式都有哪些 呢?这正是本文前3 节讨论的话题,每一节介绍一种提交数据的方式,但是Android 提交数据的方式绝非 仅仅这三种,这里给出的只是最基础的3 中方式。将这些基础的方式学会了,其他再高级的方式对我们来 说也不过是小菜一碟了。 本文的1.1、1.2、1.3 三节中使用的需求和布局是一模一样的,甚至1.2 和1.3 节的工程就是直接从1.1 节中的工程拷贝过来的,唯一不同的就是使用提交数据的框架(类)不同。因此这里一次性将需求给出。 1.1.1 需求说明 如图1-1 所示,界面整体采用垂直的线性布局,前两行为两个EditText,分别代表用户名和密码。第 三、四两行为两个Button,前者点击后采用get 方式提交数据,后者点击后采用post 方式提交数据。数 据提交成功后,服务器会有返回值,并将返回值用Toast 显示出来。 1.1.2 服务器搭建 服务端采用Servlet 编写,名为LoginServlet,并使用Tomcat 作为其服务器。LoginServlet.java 源码见 【文件1-1】,其中黄色高亮部分为核心代码。该Servlet 在web.xml 中的配置见【文件1-2】。因为服务 器不是本文的重点,因此这里只简单介绍。 【文件1-1】LoginServlet.java
- package com.itheima.servlet;
- import java.io.IOException;
- import javax.servlet.ServletException; 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 3
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- public class LoginServlet extends HttpServlet {
- /**
-
- Constructor of the object.
- */
- public LoginServlet() {
- super();
- }
- /**
-
- Destruction of the servlet.
- Destruction of the servlet.
- */
- public void destroy() {
- super.destroy(); // Just puts "destroy" string in log
- // Put your code here
- }
- /**
-
- The doGet method of the servlet.
- The doGet method of the servlet.
-
-
- This method is called when a form has its tag value method equals to get.
-
-
- @param request the request send by the client to the server
-
- @param response the response send by the server to the client
-
- @throws ServletException if an error occurred
-
- @throws IOException if an error occurred
- */
- public void doGet(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException {
- request.setCharacterEncoding("utf-8");
- String username = request.getParameter("username");
- String password = request.getParameter("password");
- if ("GET".equals(request.getMethod().toUpperCase())) {
- byte[] bytes = username.getBytes("iso-8859-1");
- username = new String(bytes, "utf-8");
- }
- System.out.println("usernmae===="+username);
- System.out.println("password==="+password);
- response.setCharacterEncoding("utf-8");
- response.getWriter().write("成功收到信息"+username+"/"+password); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 4
- }
- /**
-
- The doPost method of the servlet.
- The doPost method of the servlet.
-
-
- This method is called when a form has its tag value method equals to post.
-
-
- @param request the request send by the client to the server
-
- @param response the response send by the server to the client
-
- @throws ServletException if an error occurred
-
- @throws IOException if an error occurred
- */
- public void doPost(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException {
- doGet(request, response);
- }
- /**
-
- Initialization of the servlet.
- Initialization of the servlet.
-
-
- @throws ServletException if an error occurs
- */
- public void init() throws ServletException {
- // Put your code here
- }
- } 【文件1-2】web.xml
- <web-app version="2.5"
- xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
- http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
- LoginServlet
- com.itheima.servlet.LoginServlet
- FileuploadServlet
- com.itheima.servlet.FileuploadServlet
上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 5 16. LoginServlet 17. /servlet/LoginServlet 18. 19. 20. FileuploadServlet 21. /servlet/FileuploadServlet 22. 23. 24. index.jsp 25. 26. 27. 图1-1 多种方式实现用户登录(数据提交) 1.1.3 编写布局 考虑到1.2、1.3、1.4 节使用的工程布局是一模一样的,因此在这里先将布局给出。 【文件1-3】activity_main.java
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <EditText 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 6
- android:id="@+id/et_username"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="请输入用户名" />
- <EditText
- android:id="@+id/et_password"
- android:inputType="textPassword"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="请输入密码" />
- <Button
- android:onClick="login"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="right"
- android:text="get 方式登录" />
- <Button
- android:onClick="login2"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="right"
- android:text="post 方式登录" />
31. 1.1.4 添加权限 凡是网络访问的操作,必须添加如下权限。 1.2 使用HttpURLConnection 提交数据 1.2.1 代码 MainActivity.java 代码清单见【文件1-4】。 【文件1-4】MainActivity.java
- package com.itheima.userlogin;
- import java.io.InputStream;
- import java.io.OutputStream;
- import java.net.HttpURLConnection; 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 7
- import java.net.URL;
- import java.net.URLEncoder;
- import com.itheima.userlogin1.R;
- import android.os.Bundle;
- import android.os.Handler;
- import android.app.Activity;
- import android.text.TextUtils;
- import android.view.View;
- import android.widget.EditText;
- import android.widget.Toast;
- /**
-
- 使用HttpURLConnection 提交数据
-
- 在该案例中分别使用了get 和post 两种
-
- 方式提交数据。
-
- 大家可以对比这两种方式使用上的不同。
-
-
- @author wzy 2015-11-5
-
- */
- public class MainActivity extends Activity {
- protected static final int TIME_OUT = 5000;
- private EditText et_password;
- private EditText et_username;
- private Handler handler = new Handler(){
- @Override
- public void handleMessage(android.os.Message msg) {
- switch (msg.what) {
- case RESULT_OK:
- Toast.makeText(MainActivity.this, "成功:"
- +msg.obj.toString(), Toast.LENGTH_LONG).show();
- break;
- case RESULT_CANCELED:
- Toast.makeText(MainActivity.this, "失败:"
- +msg.obj.toString(), Toast.LENGTH_LONG).show();
- break;
- default:
- break;
- }
- };
- };
- @Override
- protected void onCreate(Bundle savedInstanceState) { 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 8
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- //获取控件
- et_username = (EditText) findViewById(R.id.et_username);
- et_password = (EditText) findViewById(R.id.et_password);
- }
- /**
-
- 使用get 方式完成用户的登录
-
- @param view
- */
- public void login(View view){
- //获取用户数据
- final String username = et_username.getText().toString().trim();
- final String password = et_password.getText().toString().trim();
- //校验数据
- if (TextUtils.isEmpty(password)||TextUtils.isEmpty(username)) {
- Toast.makeText(this, "用户名或密码不能为空!", Toast.LENGTH_SHORT).show();
- return;
- }
- //开启子线程
- new Thread(new Runnable() {
- @Override
- public void run() {
- /*
-
- 因为是get 方式提交参数,因此对提交的参数必须使用
- URLEncoder.encode(String)方法进行编码,
-
- 该编码可以将中文、空格、特殊字符等转义为16 进制的数字,
- 这样可以兼容不同平台的差异性,而Tomcat 内部会自动将这些
-
- 16 进制数给重新变为普通文本。
- */
- String path =
- "http://10.0.2.2:8080/userlogin/servlet/LoginServlet?username="
- +URLEncoder.encode(username)+"&password="+password;
- try {
- URL url = new URL(path);
- HttpURLConnection connection =
- (HttpURLConnection) url.openConnection();
- //配置参数
- connection.setRequestMethod("GET");
- connection.setConnectTimeout(TIME_OUT);
- connection.setReadTimeout(TIME_OUT);
- //打开链接
- connection.connect(); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 9
- //获取状态码
- int responseCode = connection.getResponseCode();
- /*
-
- 判断返回的状态码是否等于200,
-
- 如果返回200 则代表请求成功
- */
- if (200==responseCode) {
- //获取返回值
- InputStream inputStream = connection.getInputStream();
- //将字节输入流转化为字符串
- String data = StreamUtils.inputStream2String(inputStream);
- //将数据通过handler 发送出去
- handler.obtainMessage(RESULT_OK, data).sendToTarget();
- }else {
- //如果返回状态码不等于200 则代码请求失败
- //将失败消息也发送出去
- handler.obtainMessage(RESULT_CANCELED, responseCode).sendToTarget();
- }
- } catch (Exception e) {
- e.printStackTrace();
- //将异常消息发送出去
- handler.obtainMessage(RESULT_CANCELED, e).sendToTarget();
- }
- }
- }).start();
- }
- /**
-
- 使用post 方式完成用户的登录
-
- @param view
- */
- public void login2(View view){
- //获取用户数据
- final String username = et_username.getText().toString().trim();
- final String password = et_password.getText().toString().trim();
- //校验数据
- if (TextUtils.isEmpty(password)||TextUtils.isEmpty(username)) {
- Toast.makeText(this, "用户名或密码不能为空!", Toast.LENGTH_SHORT).show();
- return;
- }
- //开启子线程
- new Thread(new Runnable() {
- @Override
- public void run() { 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 10
- String path =
- "http://10.0.2.2:8080/userlogin/servlet/LoginServlet";
- try {
- URL url = new URL(path);
- HttpURLConnection connection =
- (HttpURLConnection) url.openConnection();
- //配置参数
- connection.setRequestMethod("POST");
- /*
-
- 设置该参数,才能以流的形式提交数据
-
- 需要将要提交的数据转换为字节输出流
- */
- connection.setDoOutput(true);
- connection.setConnectTimeout(TIME_OUT);
- connection.setReadTimeout(TIME_OUT);
- //将提交的参数进行URL 编码
- String param =
- "username="+URLEncoder.encode(username)+"&password="+password;
- /*
-
- 设置请求属性,相当于封装http 的请求头参数
- */
- //设置请求体的的长度
- connection.setRequestProperty("Content-Length", param.length()+"");
- //设置请求体的类型
- connection.setRequestProperty(
- "Content-Type", application/x-www-form-urlencoded");
- //打开链接
- connection.connect();
- //获取输出流
- OutputStream os = connection.getOutputStream();
- //通过输出流将要提交的数据提交出去
- os.write(param.getBytes());
- //关闭输出流
- os.close();
- //判断状态码
- int responseCode = connection.getResponseCode();
- if (200==responseCode) {
- //获取返回值
- InputStream inputStream = connection.getInputStream();
- //将字节流转换为字符串
- String data = StreamUtils.inputStream2String(inputStream);
- handler.obtainMessage(RESULT_OK, data).sendToTarget();
- }else {
- handler.obtainMessage(RESULT_CANCELED, responseCode).sendToTarget(); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 11
- }
- } catch (Exception e) {
- e.printStackTrace();
- handler.obtainMessage(RESULT_CANCELED, e).sendToTarget();
- }
- }
- }).start();
- }
- } 1.2.2 总结 在http 协议中,get 请求协议没有请求体,只有请求头和请求行,因此如果想使用get 方式提交数据, 只能通过在url 后面加上要提交的参数。这也意味着get 方式只能提交比较小的参数。 如果get 方式提交的参数有特殊字符或者中文字符那么必须对其进行URL 编码,不然会导致服务器接 收到的数据乱码。 对于post 请求,提交的数据位于请求体中,因此需要设置connection.setDoOutput(true);参数,该参数 设置后才允许将提交的数据通过输出流的形式提交。不过需要说明的是虽然采用post 方式提交,依然需要 将参数进行URL 编码。 其实当我们使用浏览器进行form 表单提交的时候,浏览器内部已经帮我们实现了URL 编码。因为我 们这里是使用代码模拟浏览器的提交数据过程,因此需要使用代码特殊处理。 1.3 使用HttpClient 提交数据 HttpClient 是Apache Jakarta Common 下的子项目,提供了高效的、最新的、功能丰富的支持HTTP 协 议的客户端编程工具包,并且它支持HTTP 协议最新的版本。 HttpClient 被内置到Android SDK 中,因此可以在不添加任何额外jar 包情况下,直接使用。 1.3.1 get 方式提交 在1.2 节工程的基础上,只需要修改部分代码即可。因此这里只给出核心代码。 【文件1-5】get 方式提交数据代码片段
- /**
-
- HttpCLient 使用get 方式完成用户的登录
-
-
- @param view
- */
- public void login3(View view) {
- // 获取用户数据
- final String username = et_username.getText().toString().trim(); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 12
- final String password = et_password.getText().toString().trim();
- // 校验数据
- if (TextUtils.isEmpty(password) || TextUtils.isEmpty(username)) {
- Toast.makeText(this, "用户名或密码不能为空!", Toast.LENGTH_SHORT).show();
- return;
- }
- // 开启子线程
- new Thread(new Runnable() {
- @Override
- public void run() {
- String path =
- "http://10.0.2.2:8080/userlogin/servlet/LoginServlet?username="
-
- URLEncoder.encode(username) + "&password=" + password;
- try {
- // 创建一个httpClient 对象
- HttpClient client = new DefaultHttpClient();
- // 创建一个请求方式
- HttpGet request = new HttpGet(path);
- // 执行操作
- HttpResponse response = client.execute(request);
- // 获取放回状态对象
- StatusLine statusLine = response.getStatusLine();
- // 获取状态码
- int statusCode = statusLine.getStatusCode();
- if (200 == statusCode) {
- // 获取服务器返回的对象
- HttpEntity entity = response.getEntity();
- // 获取输入流
- InputStream inputStream = entity.getContent();
- // 将输入流转化为字符串
- String data = StreamUtils.inputStream2String(inputStream);
- handler.obtainMessage(RESULT_OK, data).sendToTarget();
- } else {
- handler.obtainMessage(RESULT_CANCELED, statusCode).sendToTarget();
- }
- } catch (Exception e) {
- e.printStackTrace();
- handler.obtainMessage(RESULT_CANCELED, e).sendToTarget();
- }
- }
- }).start();
- } 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 13 1.3.2 post 方式提交 【文件1-6】post 方式提交数据代码片段
- /**
-
- HttpCLient 使用post 方式完成用户的登录
-
-
- @param view
- */
- public void login4(View view) {
- // 获取用户数据
- final String username = et_username.getText().toString().trim();
- final String password = et_password.getText().toString().trim();
- // 校验数据
- if (TextUtils.isEmpty(password) || TextUtils.isEmpty(username)) {
- Toast.makeText(this, "用户名或密码不能为空!", Toast.LENGTH_SHORT).show();
- return;
- }
- // 开启子线程
- new Thread(new Runnable() {
- @Override
- public void run() {
- String path = "http://10.0.2.2:8080/userlogin/servlet/LoginServlet";
- try {
- // 创建一个httpClient 对象
- HttpClient client = new DefaultHttpClient();
- // 创建一个post 请求方式
- HttpPost request = new HttpPost(path);
- //创建集合用于添加请求的数据
- List parameters =
- new ArrayList();
- //将请求数据添加到集合中
- parameters.add(new BasicNameValuePair("username", username));
- parameters.add(new BasicNameValuePair("password", password));
- /*
-
- 创建请求实体对象
-
- UrlEncodedFormEntity 是HttpEntity 的子类,
- 该类专门用于封装字符串类型的参数
-
- 指定数据的编码格式
- */
- HttpEntity requestEntity =
- new UrlEncodedFormEntity(parameters, "utf-8");
- //设置请求体
- request.setEntity(requestEntity); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 14
- // 执行操作
- HttpResponse response = client.execute(request);
- // 获取放回状态对象
- StatusLine statusLine = response.getStatusLine();
- // 获取状态码
- int statusCode = statusLine.getStatusCode();
- if (200 == statusCode) {
- // 获取服务器返回的对象
- HttpEntity entity = response.getEntity();
- // 获取输入流
- InputStream inputStream = entity.getContent();
- // 将输入流转化为字符串
- String data = StreamUtils.inputStream2String(inputStream);
- handler.obtainMessage(RESULT_OK, data).sendToTarget();
- } else {
- handler.obtainMessage(RESULT_CANCELED, statusCode).sendToTarget();
- }
- } catch (Exception e) {
- e.printStackTrace();
- handler.obtainMessage(RESULT_CANCELED, e).sendToTarget();
- }
- }
- }).start();
- } 1.3.3 总结 一、get 请求方式步骤 1、创建一个httpClient 对象 HttpClient client = new DefaultHttpClient(); 2、创建一个请求方式 String path = "http://10.0.2.2:8080/userlogin/servlet/LoginServlet?username="
- URLEncoder.encode(username) + "&password=" + password; //因为是get 方式,因此需要在path 中添加请求参数 HttpGet request = new HttpGet(path); 3、开始访问网络,并接收返回值 HttpResponse response = client.execute(request); 4、获取返回状态码 //获取返回值的状态行 StatusLine statusLine = response.getStatusLine(); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 15 // 获取状态码 int statusCode = statusLine.getStatusCode(); 5、判断状态码 //如果状态码为200 则代表请求成功 if (200 == statusCode) {//TODO} 6、获取返回数据 // 获取服务器返回的对象 HttpEntity entity = response.getEntity(); // 获取输入流 InputStream inputStream = entity.getContent(); 二、post 请求方式步骤 1、创建一个httpClient 对象 HttpClient client = new DefaultHttpClient(); 2、创建一个post 请求方式 String path = "http://10.0.2.2:8080/userlogin/servlet/LoginServlet"; HttpPost request = new HttpPost(path); 3、设置请求体 //创建集合用于添加请求的数据 List parameters = new ArrayList(); //将请求数据添加到集合中 parameters.add(new BasicNameValuePair("username", username)); parameters.add(new BasicNameValuePair("password", password)); /*
- 创建请求实体对象
- UrlEncodedFormEntity 是HttpEntity 的子类,该类专门用于封装字符串类型的参数
- 指定数据的编码格式 */ HttpEntity requestEntity = new UrlEncodedFormEntity(parameters, "utf-8"); //设置请求体 request.setEntity(requestEntity); 4、开始访问网络,并接收返回值 // 执行操作 HttpResponse response = client.execute(request); 5、获取返回状态码 //获取返回值的状态行 StatusLine statusLine = response.getStatusLine(); // 获取状态码 int statusCode = statusLine.getStatusCode(); 6、判断状态码 //如果状态码为200 则代表请求成功 if (200 == statusCode) {//TODO} 7、获取返回数据 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 16 // 获取服务器返回的对象 HttpEntity entity = response.getEntity(); // 获取输入流 InputStream inputStream = entity.getContent(); 1.4 使用AsyncHttpClient 框架提交数据 AsyncHttpClient 是开源免费的基于HttpClient 的网络请求框架,其源码托管在githu 上。下载地址: https://github.com/loopj/android-async-http。 如图1-2 所示为AsyncHttpClient 在github 的网页,大家可以点击右下角的按钮,将源码下载下来,然 后将下载好的压缩包解压,把src 目录中源码拷贝到自己的工程的src 目录下,比如图1-3 所示。 图1-2 AsyncHttpClient 网页 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 17 图1-3 将AsyncHttpClient 添加到工程中 1.4.1 get 方式提交 在1.2 节工程的基础上,只需要修改部分代码即可。因此这里只给出核心代码。 【文件1-7】get 方式提交数据代码片段
- /**
-
- 使用AsyncHttpClient 的get 方式提交数据
-
-
- @param view
- */
- public void login5(View view) {
- // 获取用户数据
- final String username = et_username.getText().toString().trim();
- final String password = et_password.getText().toString().trim();
- // 校验数据
- if (TextUtils.isEmpty(password) || TextUtils.isEmpty(username)) {
- Toast.makeText(this, "用户名或密码不能为空!", Toast.LENGTH_SHORT).show();
- return;
- }
- String path = "http://10.0.2.2:8080/userlogin/servlet/LoginServlet?username="
-
- URLEncoder.encode(username) + "&password=" + password;
- // 创建一个AsyncHttpClient
- AsyncHttpClient client = new AsyncHttpClient();
- //执行get 方式请求
- client.get(path, new DataAsyncHttpResponseHandler() {
- /*
-
- 请求网络是在子线程中进行的,当请求成功后回调onSuccess 方法,
-
- 该方法是在主线程中被调用了,其内部是通过Handler 实现的
-
- 当请求成功后回调该方法
-
- 参数1:返回的状态码
-
- 参数2:响应头
-
- 参数3:返回的数据
- */
- @Override
- public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
- Log.d("tag", Thread.currentThread().getName());
- //将responseBody 字节数组转化为字符串
- Toast.makeText(MainActivity.this, new String(responseBody),
- Toast.LENGTH_LONG).show();
- }
- /*
-
- 当请求失败后回调该方法,该方法依然在主线程中被执行
- */ 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 18
- @Override
- public void onFailure(int statusCode, Header[] headers, byte[] responseBody,
- Throwable error) {
- Toast.makeText(MainActivity.this, new String(responseBody),
- Toast.LENGTH_LONG).show();
- }
- });
- } 1.4.2 post 方式提交 【文件1-8】post 方式提交数据代码片段
- /**
-
- 使用AsyncHttpClient 的post 方式提交数据
-
-
- @param view
- */
- public void login6(View view) {
- // 获取用户数据
- final String username = et_username.getText().toString().trim();
- final String password = et_password.getText().toString().trim();
- // 校验数据
- if (TextUtils.isEmpty(password) || TextUtils.isEmpty(username)) {
- Toast.makeText(this, "用户名或密码不能为空!", Toast.LENGTH_SHORT).show();
- return;
- }
- String path = "http://10.0.2.2:8080/userlogin/servlet/LoginServlet";
- // 创建一个AsyncHttpClient
- AsyncHttpClient client = new AsyncHttpClient();
- //封装请求参数
- RequestParams params = new RequestParams();
- params.put("username", username);
- params.put("password", password);
- /*
-
- 执行post 请求
-
- 参数1:url 地址
-
- 参数2:请求参数
-
- 参数3:回调接口,在该接口中实现成功和失败方法,该过程是异步的。
- */
- client.post(path, params, new DataAsyncHttpResponseHandler() {
- @Override
- public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 19 {
- Toast.makeText(MainActivity.this, new String(responseBody),
- Toast.LENGTH_LONG).show();
- }
- @Override
- public void onFailure(int statusCode, Header[] headers, byte[] responseBody,
- Throwable error) {
- Toast.makeText(MainActivity.this, new String(responseBody),
- Toast.LENGTH_LONG).show();
- }
- });
- } 1.4.3 总结 一、get 请求方式步骤 1、创建一个AsyncHttpClient 对象 AsyncHttpClient client = new AsyncHttpClient(); 2、执行get 方法 /*
- 执行get 方式请求
- 参数1:请求的url 地址
- 参数2:回调接口。在该接口中实现相应成功和失败方法,该过程是异步的。 / client.get(path, new DataAsyncHttpResponseHandler() { /
- 请求网络是在子线程中进行的,当请求成功后回调onSuccess 方法,
- 该方法是在主线程中被调用了,其内部是通过Handler 实现的
- 当请求成功后回调该方法
- 参数1:返回的状态码
- 参数2:响应头
- 参数3:返回的数据 / @Override public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) { Log.d("tag", Thread.currentThread().getName()); //将responseBody 字节数组转化为字符串 Toast.makeText(MainActivity.this, new String(responseBody), Toast.LENGTH_LONG).show(); } /
- 当请求失败后回调该方法,该方法依然在主线程中被执行 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 20 / @Override public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) { Toast.makeText(MainActivity.this, new String(responseBody), Toast.LENGTH_LONG).show(); } }); 在执行get 方法的时候需要传递一个ResponseHandlerInterface 接口的子类, 在上面使用了 DataAsyncHttpResponseHandler 抽象类,除此之外其实ResponseHandlerInterface 还有很多子类,比如用于 接收json 字符串的TextHttpResponseHandler,用于接收文件下载的TextHttpResponseHandler。因为我们只 需要接收字节数组,并将字节数组转化为字符串即可,因此我们使用DataAsyncHttpResponseHandler 抽象 类。 二、post 方式请求步骤 1、创建一个AsyncHttpClient 对象 AsyncHttpClient client = new AsyncHttpClient(); 2、封装请求参数 //封装请求参数 RequestParams params = new RequestParams(); params.put("username", username); params.put("password", password); 3、执行post 方法 /
- 执行post 请求
- 参数1:url 地址
- 参数2:请求参数
- 参数3:回调接口,在该接口中实现成功和失败方法,该过程是异步的。 / client.post(path, params, new DataAsyncHttpResponseHandler() { @Override public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) { Toast.makeText(MainActivity.this, new String(responseBody), Toast.LENGTH_LONG).show(); } @Override public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) { Toast.makeText(MainActivity.this, new String(responseBody), Toast.LENGTH_LONG).show(); } }); post 方法跟get 方式不同的就是多了一个RequestParams 参数。 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 21 1.5 JavaSE 实现多线程下载 1.5.1 多线程下载原理 多线程下载就是将同一个网络上的原始文件根据线程个数分成均等份,然后每个单独的线程下载对应 的一部分,然后再将下载好的文件按照原始文件的顺序“拼接”起来就构成了完整的文件了。这样就大大 提高了文件的下载效率。 多线程下载大致可分为以下几个步骤: 一、获取服务器上的目标文件的大小 显然这一步是需要先访问一下网络,只需要获取到目标文件的总大小即可。目的是为了计算每个线程 应该分配的下载任务。 二、计算每个线程下载的起始位置和结束位置 我们可以把原始文件当成一个字节数组,每个线程只下载该“数组”的指定起始位置和指定结束位置 之间的部分。在第一步中我们已经知道了“数组”的总长度。因此只要再知道总共开启的线程的个数就好 计算每个线程要下载的范围了。 每个线程需要下载的字节个数(blockSize)=总字节数(totalSize)/线程数(threadCount)。 假设给线程按照0,1,2,3...n 的方式依次进行编号,那么第n 个线程下载文件的范围为: 起始脚标startIndex=nblockSize。 结束脚标endIndex=(n-1)*blockSize-1。 考虑到totalSize/threadCount 不一定能整除,因此对已最后一个线程应该特殊处理,最后一个线程的起 始脚标计算公式不变,但是结束脚标endIndex=totalSize-1;即可。 三、在本地创建一个跟原始文件同样大小的文件 在本地可以通过RandomAccessFile 创建一个跟目标文件同样大小的文件,该api 支持文件任意位置的 读写操作。这样就给多线程下载提供了方便,每个线程只需在指定起始和结束脚标范围内写数据即可。 四、开启多个子线程开始下载 五、记录下载进度 为每一个单独的线程创建一个临时文件,用于记录该线程下载的进度。对于单独的一个线程,每下载 一部分数据就在本地文件中记录下当前下载的字节数。这样子如果下载任务异常终止了,那么下次重新开 始下载时就可以接着上次的进度下载。 六、删除临时文件 当多个线程都下载完成之后,最后一个下载完的线程将所有的临时文件删除。 1.5.2 代码实现 【文件1-9】多线程下载JavaSE 代码
- package com.itheima.se.download;
- import java.io.BufferedReader;
- import java.io.BufferedWriter;
- import java.io.File;
- import java.io.FileReader; 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 22
- import java.io.FileWriter;
- import java.io.InputStream;
- import java.io.RandomAccessFile;
- import java.net.HttpURLConnection;
- import java.net.URL;
- /*
-
- 实现多线程断点续下载
- */
- public class MultiDownlodTest {
- /**
-
- @param args
- */
- public static void main(String[] args) {
- String sourcePath = "http://localhost:8080/FeiQ.exe";
- String targetPath = "d://FeiQ.exe";
- new MultiDownloader(sourcePath,3,targetPath).download();
- }
- static class MultiDownloader {
- private String sourcePath;
- private int threadCount;
- private String targetPath;
- //未完成任务的线程
- private int threadRunning;
- public MultiDownloader(String sourcePath,int threadCount,String targetPath){
- this.sourcePath = sourcePath;
- this.threadCount = threadCount;
- this.targetPath = targetPath;
- }
- public void download(){
- try {
- URL url = new URL(sourcePath);
- HttpURLConnection connection =
- (HttpURLConnection) url.openConnection();
- //配置连接参数
- connection.setRequestMethod("GET");
- connection.setConnectTimeout(5000);
- //打开连接
- connection.connect();
- int responseCode = connection.getResponseCode();
- if (responseCode==200) {
- int totalSize = connection.getContentLength(); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 23
- //计算每个线程下载的平均字节数
- int avgSize = totalSize/threadCount;
- for(int i=0;i<threadCount;i++){
- final int startIndex = i*avgSize;
- int endIndex = 0;
- if (i==threadCount-1) {
- endIndex = totalSize-1;
- }else {
- endIndex = (i+1)*avgSize-1;
- }
- threadRunning++;
- //开启子线程,实现下载
- new MyDownloadThread(i,
- startIndex, endIndex,targetPath,sourcePath).start();
- }
- }else {
- System.out.println("返回码为:"+responseCode+" 请求文件长度失败!");
- return;
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
-
-
- @author wzy 2015-10-26
-
- */
- class MyDownloadThread extends Thread{
- private int id;
- private int startIndex;
- private int endIndex;
- private String targetPath;
- private String sourcePath;
- public MyDownloadThread(int id,int startIndex,
- int endIndex,String targetPath,String sourcePath){
- this.id = id;
- this.startIndex = startIndex;
- this.endIndex = endIndex;
- this.targetPath = targetPath;
- this.sourcePath = sourcePath;
- }
- @Override 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 24
- public void run() {
- try {
- URL url = new URL(sourcePath);
- HttpURLConnection connection =
- (HttpURLConnection) url.openConnection();
- //设置断点下载参数
- connection.setRequestMethod("GET");
- File file = new File("d://"+id+".tmp");
- /*
-
- 该属性设置后,返回的状态码就不再是200,而是206
- */
- int currentIndex = -1;
- //读进度
- if (file.exists()) {
- BufferedReader reader =
- new BufferedReader(new FileReader(file));
- String readLine = reader.readLine();
- currentIndex = Integer.valueOf(readLine);
- reader.close();
- }else {
- currentIndex = startIndex;
- }
- ////只有设置了该属性才能下载指定范围的文件
- connection.setRequestProperty("Range", "bytes="+currentIndex+"-"+endIndex);
- connection.setConnectTimeout(5000);
- connection.setReadTimeout(5000);
- connection.connect();
- int responseCode = connection.getResponseCode();
- //因为请求的是一个文件的部分,因此返回的状体码是206
- if (responseCode==206) {
- InputStream inputStream = connection.getInputStream();
- //支持随机读写的文件类
- RandomAccessFile raf =
- new RandomAccessFile(targetPath, "rws");
- //将文件指针定位到要写的位置
- raf.seek(currentIndex);
- byte[] buffer = new byte[1024*16];
- int len = -1;
- int totalDownloded = 0;
- while((len=inputStream.read(buffer))!=-1){
- raf.write(buffer, 0, len);
- totalDownloded+=len;
- //写进度
- BufferedWriter writer = 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 25
- new BufferedWriter(new FileWriter(file));
- writer.write(currentIndex+totalDownloded+"");
- writer.close();
- System.out.println(id+"下载了:"+totalDownloded+","+
- (totalDownloded+currentIndex-startIndex)*100/(endIndex-startIndex)+"%");
- }
- raf.close();
- inputStream.close();
- connection.disconnect();
- //线程执行完了
- threadRunning--;
- if (threadRunning==0) {
- for(int i=0;i<threadCount;i++){
- File tmpFile = new File("d://"+i+".tmp");
- tmpFile.delete();
- }
- }
- }else {
- System.out.println("返回的状态码为:"+responseCode+
- " 下载失败!");
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- }
- }
- }
新技能: 1、多线程下载文件的请求属性 如果我们想请求服务器上某文件的一部分,而不是将整个文件都下载下来,那么就必须设置如下 属性:connection.setRequestProperty("Range", "bytes="+currentIndex+"-"+endIndex); 2、请求部分文件返回成功的状态码是206 当我们请求部分文件成功后,服务器返回的状态码不是200,而是206。 1.6 Android 实现多线程下载 将上面JavaSE 实现多线程下载的代码经过一定的改造,便可移植到Android 上。有所不同的是Android 有界面可以跟用户进行良好的交互,在界面(如图1-4)上让用户输入原文件地址、线程个数,然后点击 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 26 确定开始下载。为了让用户可以清晰的看到每个线程下载的进度根据线程个数动态的生成等量的进度条 (ProgressBar)。 图1-4 Android 实现多线程下载 1.6.1 ProgressBar 的使用 ProgressBar 是一个进度条控件,用于显示一项任务的完成进度。其有两种样式,一种是圆形的, 该种样式是系统默认的,由于无法显示具体的进度值,适合用于不确定要等待多久的情形下;另一种是长 条形的, ,此类进度条有两种颜色,高亮颜色代表任务完成的总进度。对 于我们下载任务来说,由于总任务(要下载的字节数)是明确的,当前已经完成的任务(已经下载的字节 数)也是明确的,因此特别适合使用后者。 由于在我们的需求里ProgressBar 是需要根据线程的个数动态添加的,而且要求是长条形的。因此可以 事先在布局文件中编写好ProgressBar 的样式。当需要用到的时候再将该布局(见【文件1-11】)填充起 来。 ProgressBar 的max 属性代表其最大刻度值,progress 属性代表当前进度值。使用方法如下: ProgressBar.setMax(int max);设置最大刻度值。 ProgressBar.setProgress(int progress);设置当前进度值。 给ProgressBar 设置最大刻度值和修改进度值可以在子线程中操作的,其内部已经特殊处理过了,因此 不需要再通过发送Message 让主线程修改进度。 1.6.2 编写布局 这里给出两个布局,【文件1-10】是MainActivity 的布局,其显示效果如图1-4。【文件1-11】是ProgressBar 布局。 【文件1-10】activity_main.java
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 27
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <EditText
- android:id="@+id/et_url"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="http://10.0.2.2:8080/FeiQ.exe" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
-
- <EditText
- android:id="@+id/et_threadCount"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:text="3"
- />
- <Button
- android:onClick="download"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="下载"
- />
- <LinearLayout
- android:id="@+id/ll_pbs"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
-
【文件1-11】progress_bar.xml
- <ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="match_parent" 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 28
- android:layout_height="wrap_content" >
1.6.3 编写代码 【文件1-12】MainActivity.java
- package com.itheima.android.downloader;
- import java.io.BufferedReader;
- import java.io.BufferedWriter;
- import java.io.File;
- import java.io.FileReader;
- import java.io.FileWriter;
- import java.io.InputStream;
- import java.io.RandomAccessFile;
- import java.net.HttpURLConnection;
- import java.net.URL;
- import android.os.Bundle;
- import android.support.v4.app.FragmentActivity;
- import android.text.TextUtils;
- import android.view.View;
- import android.widget.EditText;
- import android.widget.LinearLayout;
- import android.widget.ProgressBar;
- import android.widget.Toast;
- /**
-
- Android 实现多线程断点续传
-
-
- @author wzy 2015-11-6
-
- */
- public class MainActivity extends FragmentActivity {
- private EditText et_url;
- private EditText et_threadCount;
- //用于添加ProgressBar 的容器
- private LinearLayout ll_pbs;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- //初始化控件 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 29
- et_url = (EditText) findViewById(R.id.et_url);
- et_threadCount = (EditText) findViewById(R.id.et_threadCount);
- ll_pbs = (LinearLayout) findViewById(R.id.ll_pbs);
- }
- /**
-
- 点击Button 绑定的方法
-
- 开始下载任务
-
-
- @param view
- */
- public void download(View view) {
- // 获取用户输入的初始值
- final String sourcePath = et_url.getText().toString().trim();
- final int threadCount =
- Integer.valueOf(et_threadCount.getText().toString().trim());
- // 校验数据
- if (TextUtils.isEmpty(sourcePath) || threadCount < 1) {
- Toast.makeText(this, "输入的内容不合法!", Toast.LENGTH_SHORT).show();
- return;
- }
- //存储到Android 本地的位置
- final String targetPath = "/mnt/sdcard/FeiQ.exe";
- //初始化进度条
- //填充一个ProgressBar
- for(int i=0;i<threadCount;i++){
- //将进度条布局填充为ProgressBar
- ProgressBar pb = (ProgressBar) View.inflate(MainActivity.this,
- R.layout.progress_bar, null);
- //将ProgressBar 添加到LinearLayout 中
- ll_pbs.addView(pb);
- }
- //开启子线程开始下载任务
- new Thread(new Runnable() {
- @Override
- public void run() {
- //开启多线程下载器
- new MultiDownloader(sourcePath,threadCount,targetPath).download();
- }
- }).start();
- }
- class MultiDownloader {
- //服务器原始文件地址
- private String sourcePath; 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 30
- //线程个数
- private int threadCount;
- //本地目标存储文件路径
- private String targetPath;
- //未完成任务的线程
- private int threadRunning;
- public MultiDownloader(String sourcePath,int threadCount,String targetPath){
- this.sourcePath = sourcePath;
- this.threadCount = threadCount;
- this.targetPath = targetPath;
- }
- public void download(){
- try {
- URL url = new URL(sourcePath);
- HttpURLConnection connection = (HttpURLConnection) url.openConnection();
- //配置连接参数
- connection.setRequestMethod("GET");
- connection.setConnectTimeout(5000);
- //打开连接
- connection.connect();
- int responseCode = connection.getResponseCode();
- if (responseCode==200) {
- //获取总字节数
- int totalSize = connection.getContentLength();
- //计算每个线程下载的平均字节数
- int avgSize = totalSize/threadCount;
- //计算每个线程下载的范围
- for(int i=0;i<threadCount;i++){
- final int startIndex = i*avgSize;
- int endIndex = 0;
- if (i==threadCount-1) {
- endIndex = totalSize-1;
- }else {
- endIndex = (i+1)*avgSize-1;
- }
- threadRunning++;
- //开启子线程,实现下载
- new MyDownloadThread(i, startIndex,
- endIndex,targetPath,sourcePath).start();
- }
- }else {
- System.out.println("返回码为:"+responseCode+" 请求文件长度失败!"); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 31
- return;
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- /**
-
- 下载线程
-
-
- @author wzy 2015-10-26
-
- */
- class MyDownloadThread extends Thread{
- private int id;
- private int startIndex;
- private int endIndex;
- private String targetPath;
- private String sourcePath;
- public MyDownloadThread(int id,int startIndex,
- int endIndex,String targetPath,String sourcePath){
- this.id = id;
- this.startIndex = startIndex;
- this.endIndex = endIndex;
- this.targetPath = targetPath;
- this.sourcePath = sourcePath;
- }
- @Override
- public void run() {
- try {
- URL url = new URL(sourcePath);
- HttpURLConnection connection =
- (HttpURLConnection) url.openConnection();
- //设置断点下载参数
- connection.setRequestMethod("GET");
- //根据线程的id 创建临时文件,用于记录下载的进度
- File file = new File("/mnt/sdcard/"+id+".tmp");
- /*
-
- 该属性设置后,返回的状态码就不再是200,而是206
- */
- int currentIndex = -1;
- //读进度
- if (file.exists()) {
- BufferedReader reader =
- new BufferedReader(new FileReader(file)); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 32
- String readLine = reader.readLine();
- //读取历史进度
- currentIndex = Integer.valueOf(readLine);
- reader.close();
- }else {
- currentIndex = startIndex;
- }
- //设置多线程下载属性
- connection.setRequestProperty("Range", "bytes="+currentIndex+"-"+endIndex);
- connection.setConnectTimeout(5000);
- connection.setReadTimeout(5000);
- connection.connect();
- int responseCode = connection.getResponseCode();
- if (responseCode==206) {
- InputStream inputStream = connection.getInputStream();
- //支持随机读写的文件类
- RandomAccessFile raf =
- new RandomAccessFile(targetPath, "rws");
- //将文件指针定位到要写的位置
- raf.seek(currentIndex);
- byte[] buffer = new byte[1024*16];
- int len = -1;
- int totalDownloded = 0;
- //获取线性布局的子控件(ProgressBar)
- ProgressBar pb = (ProgressBar) ll_pbs.getChildAt(id);
- //设置对打的进度值
- pb.setMax(endIndex-startIndex);
- while((len=inputStream.read(buffer))!=-1){
- raf.write(buffer, 0, len);
- totalDownloded+=len;
- //写进度
- BufferedWriter writer =
- new BufferedWriter(new FileWriter(file));
- writer.write(currentIndex+totalDownloded+"");
- writer.close();
- //修改进度条
pb.setProgress(currentIndex+totalDownloded-startIndex); 210. System.out.println(id+"下载了:"+totalDownloded+","+ 211. (totalDownloded+currentIndex-startIndex)*100/(endIndex-startIndex)+"%"); 212. } 213. raf.close(); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 33 214. inputStream.close(); 215. connection.disconnect(); 216. //线程执行完了 217. threadRunning--; 218. //如果所有的线程都下载完了,则删除所有的临时文件 219. if (threadRunning==0) { 220. for(int i=0;i<threadCount;i++){ 221. File tmpFile = new File("/mnt/sdcard/"+i+".tmp"); 222. tmpFile.delete(); 223. } 224. } 225. }else { 226. System.out.println("返回的状态码为:"+responseCode+ 227. " 下载失败!"); 228. } 229. } catch (Exception e) { 230. e.printStackTrace(); 231. } 232. } 233. } 234. 235. } 236. } 237. 1.6.4 添加权限 在该工程中不仅用到了网络访问还用到了sdcard 存储,因此需要添加两个权限。 1.7 xUtils 实现多线程下载 1.7.1 xUtils 简介 xUtils 是开源免费的Android 工具包,代码托管在github 上。目前xUtils 主要有四大模块: DbUtils 模块 操作数据库的框架。 ViewUtils 模块 通过注解的方式可以对UI,资源和事件绑定进行管理。 HttpUtils 模块 提供了方便的网络访问,断点续传等功能。 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 34 BitmapUtils 模块 提供了强大的图片处理工具。 我们在这里只简单实用xUtils 工具中的HttpUtils 工具。xUtils 的下载地址: https://github.com/wyouflf/xUtils 图1-5 xUtils 在Github 网页截图 1.7.2 xUtils 之HttpUtils 的使用 一、下载xUtils 工具如图1-5 所示,右下角“Download ZIP” 二、将下载好的zip 包解压,然后将src 下的源代码拷贝在自己工程中如图1-6。 图1-6 xUtils 拷贝到src 目录中 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 35 三、使用HttpUtils HttpUtils 的使用非常简单,因此这里直接给出核心代码。 【文件1-13】使用HttpUtils 完成文件下载
- /*
-
- 使用xUtils 中的HttpUtils 模块进行下载
- */
- public void downloadHttpUtils(View view){
- HttpUtils httpUtils = new HttpUtils();
- String url="http://10.0.2.2:8080/FeiQ.exe";
- String target = "/mnt/sdcard/FeiQ2.exe";
- /*
-
- 参数1:原文件网络地址
-
- 参数2:本地保存的地址
-
- 参数3:是否支持断点续传,true:支持,false:不支持
-
- 参数4:回调接口,该接口中的方法都是在主线程中被调用的,
-
- 也就是该接口中的方法都可以修改UI
- */
- httpUtils.download(url, target, true, new RequestCallBack() {
- //当下载任务开始时被调用
- @Override
- public void onStart() {
- Log.d("tag", "onStart"+Thread.currentThread().getName());
- }
- //每下载一部分就被调用一次,通过该方法可以知道当前下载进度
- /*
-
- 参数1:原文件总字节数
-
- 参数2:当前已经下载好的字节数
-
- 参数3:是否在上传,对于下载,该值为false
- */
- @Override
- public void onLoading(long total, long current, boolean isUploading) {
- Log.d("tag", "onLoading"+Thread.currentThread().getName()+"//"+
- "current"+current+"//"+"total="+total);
- }
- //下载成功后调用一次
- @Override
- public void onSuccess(ResponseInfo responseInfo) {
- Toast.makeText(MainActivity.this,
- "下载成功", Toast.LENGTH_SHORT).show();
- }
- //失败后调用一次
- @Override
- public void onFailure(HttpException error, String msg) {
- Toast.makeText(MainActivity.this,
- "下载失败:"+msg, Toast.LENGTH_LONG).show(); 上海黑马程序员——只要学不死,就往死里学,冲击年薪20 万! 36
- }
- });
- }