app内更新版本是每个app基本必备的技能,但一般来说实现更新下载就已经很ok了,但是当你下载更新的时候,突然之间网络不太好,下载中断怎么办? 再次下载时还要重新开始下?
如果这个apk有点大的话,或者网络环境不好的话,有可能很长时间下载不下来,安装不上,那是很坑的一件事;
所以为了防止这种情况,断点续传就能体现出它的价值了,网络环境不太好,重新下载?不存在的;
上次下载到什么位置,这次就从什么位置开始继续下载...
下载完成之后用户手抖了点击个返回...凉凉... 是不是还要重新下载一次才能继续安装?
NO NO NO, 只要你不结束后台程序,那么没问题,只要文件还在就可以直接安装。完全不需要你重新下载...
/**
* 从服务器下载最新更新文件
*
* @return
* @throws Exception
*/
private void downloadFile() {
if (StringUtils.isEmpty(downURL)) {
LogUtils.e("----url is null");
return;
}
long contentLength = getContentLength();
InputStream inputStream = null;
HttpURLConnection connection;
try {
URL url = new URL(downURL);
connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.setConnectTimeout(8000);
connection.setReadTimeout(8000);
totalSize = mSPUtils.getLong(TOTALSIZE);
downSize = mSPUtils.getLong(DOWN_SIZE);
/**
* 下载进度与总大小相同或小于1 说明下载已完成或者第一次下载
*/
if (downSize == totalSize || downSize < 1) {
downSize = 0;
}
/**
* 判断下载的文件大小跟上次下载的文件大小 是否 相同
* 如果相同:则下载的是一个文件,可以直接从上次下载的地方继续下载 (断点续传)
* 不相同: 则下载的不是一个文件,需要从新开始下载
*/
if (totalSize != contentLength || totalSize < 1) {
downSize = 0;
totalSize = contentLength;
}
mSPUtils.put(TOTALSIZE, contentLength);
//设置文件请求的位置 请求头格式 键值对 key : value range: bytes = 开始的位置 - 结束的位置
connection.setRequestProperty("Range", "bytes=" + downSize + "-" + totalSize);
mDownloadDialog.getmProgressBar().setMax((int) totalSize);
mDownloadDialog.getmProgressBar().setProgress((int) downSize);
// 如果以地址最后的文件命名,那么删除的时候就取这个名字删除
String appName = downURL.substring(downURL.lastIndexOf("/"));
filePath = SD_FOLDER + appName;
File file = new File(filePath);
if (!file.getParentFile().exists()) {//判断文件目录是否存在
file.getParentFile().mkdirs();
}
mAccessFile = new RandomAccessFile(file, "rw");
mAccessFile.seek(downSize);
inputStream = connection.getInputStream();
byte[] buffer = new byte[1024];
int len;
while ((len = inputStream.read(buffer)) != -1 && isDownLoder) {
mAccessFile.write(buffer, 0, len);
downSize += len;
// 获取当前下载量
mHandler.sendEmptyMessage(DOWNLOAD_PROGRESS);
}
mHandler.sendMessage(mHandler.obtainMessage(DOWNLOAD_SUCCESS, file));
} catch (IOException e) {
e.printStackTrace();
if (isNetworkConnected(mContext)) {
if (isConnect) {
mHandler.sendEmptyMessage(DOWNLOAD_CONNECT);
} else {
mHandler.sendEmptyMessage(DOWNLOAD_FAIL);
}
} else {
mHandler.sendEmptyMessage(DOWNLOAD_FAIL);
}
} finally {
try {
if (mAccessFile != null) {
mAccessFile.close();
}
if (inputStream != null) {
inputStream.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
有个坑需要注意一下:
RandomAccessFile 的两个参数 我用的是文件和“rw”,后面的这个参数可读写,rwd也可以
但第一个参数是文件,创建文件时,不能只给路径,不然实例RandomAccessFile 会报错,当初一直报错,一直爽到不报错为止
不能在setRequestProperty方法前调用getContentLength,不然给报错:连接不能设置头信息
所以你还得先获取大小,然后才能比较文件大小,需要判断下载的文件是否跟上一次下载的文件大小相同,如果相同说明是同一个文件,可以断点续传,从上次的位置开始下载,如果文件大小不一样,你就要从头开始下载了,不然下载的都不是同一个文件,那文件损坏当然安装不了。
所以你得用到保存了, 我借鉴网上的例子大多数用的是数据库,我看的有点难受,然后我就用了一个工具类保存了上次下载的位置和文件的总大小
当下载的时候在判断下载的位置是否等于总大小,等于那就是下载完成了 小于1 那说明第一次下载
应该能看懂的 就这么点代码
还有提示一下后台得配置一下
connection.setRequestProperty("Range", "bytes=" + downSize + "-" + totalSize);
后台返回的网址得支持断点续传;
我当初后台没有配置,坑死,调式半天这个位置
获取文件的总大小
/**
* 文件的总大小
*
* @return 文件的总大小
*/
private int getContentLength() {
HttpURLConnection connection = null;
try {
URL url = new URL(downURL);
connection = (HttpURLConnection) url.openConnection();
connection.setConnectTimeout(5000);
connection.setReadTimeout(5000);
if (connection.getResponseCode() == 200) {
return connection.getContentLength();
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try { //释放资源
if (connection != null) {
connection.disconnect();
}
} catch (Exception e) {
e.printStackTrace();
}
}
return 0;
}
开始与暂停
//控制开始与下载
public void start() {
downSize = SPStaticUtils.getInt(DOWN_SIZE);
totalSize = SPStaticUtils.getInt(TOTALSIZE);
// 如果下载完文件返回之后不用重新下载 直接安装(结束后台除外)
if (mFile != null && downSize == totalSize){
installApk(mContext, mFile);
return;
}
isDownLoder = true;
mProgressDialog.show();
if (mDownLoadThread == null) {
mDownLoadThread = new DownLoadThread();
}
mThreadPool.execute(mDownLoadThread);
}
//控制暂停下载
public void stop() {
isDownLoder = false;
SPStaticUtils.put(DOWN_SIZE, downSize);
mProgressDialog.dismiss();
if (mDownLoadThread != null) {
mThreadPool.remove(mDownLoadThread);
mDownLoadThread = null;
}
}
/**
* 注意:自己配置fileprovider
*
* 安装apk
*/
public static void installApk(Context context, File file) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
if (!isHasInstallPermissionWithO(context)) {
startInstallPermissionSettingActivity(context);
return;
}
}
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri data;
// 判断版本大于等于7.0
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
// "com.demo.download.fileprovider"即是在清单文件中配置的authorities
data = FileProvider.getUriForFile(context, "com.demo.download.fileprovider", file);
// 给目标应用一个临时授权
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
} else {
data = Uri.fromFile(file);
}
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);// 防止打不开应用
intent.setDataAndType(data, "application/vnd.android.package-archive");
context.startActivity(intent);
}
@RequiresApi(api = Build.VERSION_CODES.O)
public static boolean isHasInstallPermissionWithO(Context context) {
if (context == null) return false;
return context.getPackageManager().canRequestPackageInstalls();
}
/**
* 开启设置安装未知来源应用权限界面
*
* @param context
*/
@RequiresApi(api = Build.VERSION_CODES.O)
private static void startInstallPermissionSettingActivity(Context context) {
if (context == null) return;
Intent intent = new Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES);
((Activity) context).startActivityForResult(intent, REQUEST_CODE_APP_INSTALL);
}
/**
* byte(字节)根据长度转成kb(千字节)和mb(兆字节)
*
* @param bytes
* @return
*/
private static String bytes2kb(long bytes) {
BigDecimal filesize = new BigDecimal(bytes);
BigDecimal megabyte = new BigDecimal(1024 * 1024);
float returnValue = filesize.divide(megabyte, 2, BigDecimal.ROUND_UP).floatValue();
if (returnValue > 1)
return (returnValue + "MB");
BigDecimal kilobyte = new BigDecimal(1024);
returnValue = filesize.divide(kilobyte, 2, BigDecimal.ROUND_UP).floatValue();
return (returnValue + "KB");
}
上面是下载类
下面是activity中安装回调
当然你下载时调用很方便只需要一行代码即可:
AppInnerDownLoder.getInstance(this).setDownUrl(path).start();
只需要传Context 上下文,下载的url
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.start:
AppInnerDownLoder.getInstance(this).setDownUrl(path).start();
break;
case R.id.stop:
AppInnerDownLoder.getInstance(this).stop();
break;
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
// 8.0以上版本安装apk 获取未知来源为true才会继续下载安装
if (requestCode == AppInnerDownLoder.REQUEST_CODE_APP_INSTALL) {
// if (StringUtils.isEmpty(path)) return;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
if (AppInnerDownLoder.isHasInstallPermissionWithO(this)) {
if (AppInnerDownLoder.getInstance(this).getmFile() != null) {
AppInnerDownLoder.installApk(this, AppInnerDownLoder.getInstance(this).getmFile());
} else {
AppInnerDownLoder.getInstance(this).setDownUrl(path).start();
}
}
}
}
}
下载链接:https://github.com/xiaobinAndroid421726260/Android_DownloadFile_Demo2019_6_11
网友评论