|
|
|
# Aria
|
|
|
|
![图标](https://github.com/AriaLyy/DownloadUtil/blob/v_3.0/app/src/main/res/mipmap-hdpi/ic_launcher.png)</br>
|
|
|
|
## [ENGLISH DOC](https://github.com/AriaLyy/Aria/blob/master/ENGLISH_README.md)</br>
|
|
|
|
Aria项目源于工作中遇到的一个文件下载管理的需求,当时被下载折磨的痛不欲生,从那时起便萌生了编写一个简单易用,稳当高效的下载框架,aria经历了1.0到3.0的开发,算是越来越接近当初所制定的目标了。
|
|
|
|
|
|
|
|
Aria有以下特点:
|
|
|
|
+ 简单、方便
|
|
|
|
- 可以在Activity、Service、Fragment、Dialog、popupWindow、Notification等组件中使用
|
|
|
|
- 支持HTTP\FTP断点续传、多任务自动调度
|
|
|
|
- 支持HTTP任务组\FTP文件夹,断点续传下载
|
|
|
|
- 支持HTTP表单上传
|
|
|
|
- 支持文件FTP断点续传上传
|
|
|
|
+ 支持https地址下载
|
|
|
|
- 在配置文件中很容易就可以设置CA证书的信息
|
|
|
|
+ 支持300、301、302重定向下载链接下载
|
|
|
|
|
|
|
|
[怎样使用Aria?](#使用)
|
|
|
|
|
|
|
|
如果你觉得Aria对你有帮助,您的star和issues将是对我最大支持.`^_^`
|
|
|
|
|
|
|
|
## 示例
|
|
|
|
![多任务下载](https://github.com/AriaLyy/DownloadUtil/blob/master/img/download_img.gif)
|
|
|
|
![网速下载限制](https://github.com/AriaLyy/DownloadUtil/blob/master/img/max_speed.gif)
|
|
|
|
![下载任务组](https://github.com/AriaLyy/DownloadUtil/blob/master/img/download_group.gif)
|
|
|
|
|
|
|
|
|
|
|
|
## 下载
|
|
|
|
[![Download](https://api.bintray.com/packages/arialyy/maven/AriaApi/images/download.svg)](https://bintray.com/arialyy/maven/AriaApi/_latestVersion)
|
|
|
|
[![Download](https://api.bintray.com/packages/arialyy/maven/AriaCompiler/images/download.svg)](https://bintray.com/arialyy/maven/AriaCompiler/_latestVersion)
|
|
|
|
```java
|
|
|
|
compile 'com.arialyy.aria:aria-core:3.4'
|
|
|
|
annotationProcessor 'com.arialyy.aria:aria-compiler:3.4'
|
|
|
|
```
|
|
|
|
如果出现android support,请将 `compile 'com.arialyy.aria:aria-core:<last-version>'`替换为
|
|
|
|
```
|
|
|
|
compile('com.arialyy.aria:aria-core:<last-version>'){
|
|
|
|
exclude group: 'com.android.support'
|
|
|
|
}
|
|
|
|
```
|
|
|
|
如果你使用的是kotlin,请使用kotlin官方提供的方法配置apt,[kotlin kapt官方配置传送门](https://www.kotlincn.net/docs/reference/kapt.html)
|
|
|
|
|
|
|
|
***
|
|
|
|
## 使用
|
|
|
|
由于Aria涉及到文件和网络的操作,因此需要你在manifest文件中添加以下权限,如果你希望在6.0以上的系统中使用Aria,那么你需要动态向安卓系统申请文件系统读写权限,[如何使用安卓系统权限](https://developer.android.com/training/permissions/index.html?hl=zh-cn)
|
|
|
|
```xml
|
|
|
|
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
|
```
|
|
|
|
|
|
|
|
## 使用Aria
|
|
|
|
### 基本使用
|
|
|
|
例子为单任务下载,只需要很简单的代码,便可以实现下载功能
|
|
|
|
```java
|
|
|
|
Aria.download(this)
|
|
|
|
.load(DOWNLOAD_URL) //读取下载地址
|
|
|
|
.setDownloadPath(DOWNLOAD_PATH) //设置文件保存的完整路径
|
|
|
|
.start(); //启动下载
|
|
|
|
```
|
|
|
|
|
|
|
|
### 任务状态的获取
|
|
|
|
基于解耦合的考虑,Aria的下载功能是和状态获取相分离的,状态的获取并不会集成到链式代码中,但是Aria提供了另一种更简单更灵活的方案。
|
|
|
|
通过注解,你可以很容易获取任务的所有状态。
|
|
|
|
|
|
|
|
1. 将对象注册到Aria
|
|
|
|
```java
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
Aria.download(this).register();
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
2. 通过注解获取任务执行状态
|
|
|
|
**注意:**
|
|
|
|
- 注解回掉采用Apt的方式实现,所以,你不需要担心这会影响你机器的性能
|
|
|
|
- 被注解的方法**不能被private修饰**
|
|
|
|
- 被注解的方法**只能有一个参数,并且参数类型必须是`DownloadTask`或`UploadTask`或`DownloadGroupTask`**
|
|
|
|
- 方法名可以为任意字符串
|
|
|
|
|
|
|
|
```java
|
|
|
|
//在这里处理任务执行中的状态,如进度进度条的刷新
|
|
|
|
@Download.onTaskRunning protected void running(DownloadTask task) {
|
|
|
|
if(task.getUrl().eques(url)){
|
|
|
|
....
|
|
|
|
可以通过url判断是否是指定任务的回调
|
|
|
|
}
|
|
|
|
int p = task.getPercent(); //任务进度百分比
|
|
|
|
String speed = task.getConvertSpeed(); //转换单位后的下载速度,单位转换需要在配置文件中打开
|
|
|
|
String speed1 = task.getSpeed(); //原始byte长度速度
|
|
|
|
}
|
|
|
|
|
|
|
|
@Download.onTaskComplete void taskComplete(DownloadTask task) {
|
|
|
|
//在这里处理任务完成的状态
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### [更多说明,见WIKI](https://aria.laoyuyu.me/aria_doc/)
|
|
|
|
|
|
|
|
### 版本日志
|
|
|
|
+ v_3.4
|
|
|
|
- 优化大量代码
|
|
|
|
- 重构Aria的ORM模型,提高了数据读取的可靠性和读写速度
|
|
|
|
- 现在可在任意类中使用Aria了,[使用方法](http://aria.laoyuyu.me/aria_doc/start/any_java.html)
|
|
|
|
- 添加`window.location.replace("http://xxxx")`类型的网页重定向支持
|
|
|
|
- 支持gzip、deflate 压缩类型的输入流
|
|
|
|
- 添加`useServerFileName`,可使用服务端响应header的`Content-Disposition`携带的文件名
|
|
|
|
|
|
|
|
[更多版本记录](https://github.com/AriaLyy/Aria/blob/master/DEV_LOG.md)
|
|
|
|
|
|
|
|
## 混淆配置
|
|
|
|
```
|
|
|
|
-dontwarn com.arialyy.aria.**
|
|
|
|
-keep class com.arialyy.aria.**{*;}
|
|
|
|
-keep class **$$DownloadListenerProxy{ *; }
|
|
|
|
-keep class **$$UploadListenerProxy{ *; }
|
|
|
|
-keep class **$$DownloadGroupListenerProxy{ *; }
|
|
|
|
-keepclasseswithmembernames class * {
|
|
|
|
@Download.* <methods>;
|
|
|
|
@Upload.* <methods>;
|
|
|
|
@DownloadGroup.* <methods>;
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
## 其他
|
|
|
|
有任何问题,可以在[issues](https://github.com/AriaLyy/Aria/issues)给我留言反馈。</br>
|
|
|
|
在提交问题前,希望你已经查看过[wiki](https://github.com/AriaLyy/Aria/wiki)或搜索过[issues](https://github.com/AriaLyy/Aria/issues)。</br>
|
|
|
|
Aria交流群:524329160(加群条件:对aria有过star、commit、issues)
|
|
|
|
***
|
|
|
|
|
|
|
|
License
|
|
|
|
-------
|
|
|
|
|
|
|
|
Copyright 2016 AriaLyy(https://github.com/AriaLyy/Aria)
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|