FileDownloader 是一款 Android 文件下载引擎,稳定、高效、灵活、简单易用。
简单易用
单任务多线程/多连接/分块下载(并支持通过ConnectionCountAdapter定制)
ConnectionCountAdapter
高并发
灵活
可选择性支持: 独立/非独立进程
自动断点续传
当下载的文件大小可能大于1.99GB(2^31-1=2_147_483_647 = 1.99GB)的时候, 请使用FileDownloadLargeFileListener而不是FileDownloadListener(同理使用getLargeFileSofarBytes()与getLargeFileTotalBytes())
=2_147_483_647 = 1.99GB
FileDownloadLargeFileListener
FileDownloadListener
getLargeFileSofarBytes()
getLargeFileTotalBytes()
暂停: paused, 恢复: 直接调用start,默认就是断点续传
引擎默认会打开避免掉帧的处理(使得在有些情况下回调(FileDownloadListener)不至于太频繁导致ui线程被ddos), 如果你希望关闭这个功能(关闭以后,所有回调会与0.1.9之前的版本一样,所有的回调会立马抛一个消息ui线程(Handler))
如果没有特殊需要,直接通过配置filedownloader.properties将process.non-separate置为true,可以有效减少每次回调IPC带来的I/O。
filedownloader.properties
process.non-separate
true
效果图