Unity C# 多线程下载

| 发布     | 分类 C#  | 标签 C#  Unity  Thread 

[源码] gihtub

[Demo] ihaiu.MnutiThreadDownload For Mac.zip

[Demo] ihaiu.MnutiThreadDownload For Windows.zip



1.支持多行批量下载
2.支持断点续传
3.可以打开文件到所在位置 (点击本地路径)

添加任务:支持多行批量下载



下载界面



【Code】 Assets/Ihaiu/Scripts/MultiThreadDownload

【Example】 Assets/Ihaiu/HttpDownloadFileExampleFiles



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.}


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();


上一篇: adobe cs6注册机 adobeCS6破解补丁 for mac&windows 免费激活通用版
下一篇: C# 打开文件所在位置