下载
[Demo] ihaiu.MnutiThreadDownload For Mac.zip
[Demo] ihaiu.MnutiThreadDownload For Windows.zip
[Demo] 下载器
1.支持多行批量下载2.支持断点续传
3.可以打开文件到所在位置 (点击本地路径)
添加任务:支持多行批量下载
下载界面
目录
【Code】 Assets/Ihaiu/Scripts/MultiThreadDownload
【Example】 Assets/Ihaiu/HttpDownloadFileExampleFiles
[API] HttpDownload
01.
/** 添加下载文件 */
02.
public
static
DownloadFile Add(
string
url,
string
localPath);
03.
public
static
DownloadFile Add(
string
url,
string
localPath,
int
size);
04.
public
static
DownloadFile Add(
string
url,
string
localPath, Action<DownloadFile> callback);
05.
public
static
DownloadFile Add(
string
url,
string
localPath,
int
size, Action<DownloadFile> callback);
06.
07.
public
static
void
Add(DownloadFile downloadFile);
08.
09.
/** 移除下载文件 */
10.
public
static
void
Remove(DownloadFile downloadFile);
11.
12.
/** 退出,会退出所有线程*/
13.
public
static
void
Exit();
14.
15.
16.
/** 设置线程数量 */
17.
public
static
int
ProcessorCount
18.
{
19.
get
20.
{
21.
// return Mathf.Max(Environment.ProcessorCount - 1, 1);
22.
return
4;
23.
}
24.
}
[API] DownloadFile
01.
/** 下载链接 */
02.
public
string
url;
03.
04.
/** 本地存储路径 */
05.
public
string
localPath;
06.
07.
/** 文件大小 */
08.
public
long
size = 0;
09.
10.
/** 已加载大小 */
11.
public
long
loadedSize = 0;
12.
13.
/** 状态 */
14.
public
StateType state = StateType.None;
15.
16.
/** 加载完成回调 */
17.
public
Action<DownloadFile> completeCallback;
18.
19.
20.
21.
22.
/** 添加到异步队列 */
23.
public
void
AsyncLoad();
24.
25.
/** 从异步队列移除 */
26.
public
void
AsyncRemove();
27.
28.
29.
/** 同步下载 */
30.
public
void
Load();