android httpUrlConnection的下载管理

最近项目中要求使用httpUrlConnection实现多任务多线程的下载器,并不能使用三方的类库。研究各方的下载器:https://www.jianshu.com/p/798a99d871a0、
https://blog.csdn.net/weixin_39637545/article/details/117347271 和
https://www.jianshu.com/p/80ab95d5ba07。这几篇都不错。

自己也整理了一下。下载链接: 链接: https://pan.baidu.com/s/1JqyTtsXs9BTGx1-KemH02Q?pwd=h9wf 提取码: h9wf

在过程中,也遇到了一些通知栏的兼容性问题。解决参考了几个位作者的文章。

1. android 8.0 通知不显示问题

https://www.likecs.com/show-203767074.html
是channelId的问题

2. Android 各个版本的兼容性问题

https://www.dandelioncloud.cn/article/details/1514199004341682178

3.Android 11 获取存储路径错误 android.system.ErrnoException: open failed: EPERM (Operation not permitted),Android11 不能获取sdcard通用空间路径。
private String getDestPath() {
        String path;
        if (Build.VERSION.SDK_INT > 29) {
            path = mContext.getExternalFilesDir(null).getAbsolutePath() + "/log/update/";
        } else {
            path = Environment.getExternalStorageDirectory().getPath() + "/log/update/";
        }
        return path;
    }

获取的空间路径为 Android/data/XXXX(应用包名)/log

4.系统UI通知栏增加按钮和删除按钮

https://www.it1352.com/2316980.html

notifBuilder.mActions.clear();

https://blog.csdn.net/androidwubo/article/details/76021402


NotificationCompat.Builder builder = 
      new NotificationCompat.Builder(this)
          .setSmallIcon(R.drawable.ic_stat_notification)
          .setContentTitle(getString(R.string.notification))
          .setContentText(getString(R.string.ping))
          .setDefaults(Notification.DEFAULT_ALL)
        // 该方法在Android 4.1之前会被忽略
          .setStyle(new NotificationCompat.BigTextStyle()
                .bigText(msg))
        //添加Action Button
        .addAction (R.drawable.ic_stat_dismiss,
                getString(R.string.dismiss), piDismiss)
        .addAction (R.drawable.ic_stat_snooze,
                getString(R.string.snooze), piSnooze)

注意addAction方法建议与setContentIntent一起使用。

5. 在自研下载器前,也考虑用系统的下载器。但是系统的下载器有很多问题,没办法支持很多操作。

5.1)简单的使用
https://blog.csdn.net/qq_35560164/article/details/119485310
5.2)0k长度的文件在下载时不能回调,一直下载中https://blog.csdn.net/lz8362/article/details/78767508?spm=1001.2014.3001.5501
5.3)刷新UI, 没有正在下载中的回调事件,需要启动定时器不断从数据库读取数据
https://www.jianshu.com/p/d2ab2449dd12
5.4)Android 7.0 的读取数据库时字段的变更
https://www.wingmei.cn/2018/02/05/android-7-0无法获取downloadmanager下载进度/
5.5)启动安装apk时uri 报错android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW type=application/vnd.android.package-archive flg=0x10000000 }
https://blog.csdn.net/fengyeNom1/article/details/73868577

你可能感兴趣的:(android httpUrlConnection的下载管理)