Android版多線程下載器核心代碼分享

来源:http://www.cnblogs.com/shouce/archive/2016/06/03/5555089.html
-Advertisement-
Play Games

首先給大家分享多線程下載核心類: 按 Ctrl+C 複製代碼 按 Ctrl+C 複製代碼 下麵是界面的邏輯代碼: 1 package com.example.urltest; 2 3 import android.app.Activity; 4 import android.app.AlertDia ...


首先給大家分享多線程下載核心類:

按 Ctrl+C 複製代碼 按 Ctrl+C 複製代碼

下麵是界面的邏輯代碼:

複製代碼
  1 package com.example.urltest;
  2 
  3 import android.app.Activity;
  4 import android.app.AlertDialog;
  5 import android.app.ProgressDialog;
  6 import android.content.DialogInterface;
  7 import android.os.Bundle;
  8 import android.os.Message;
  9 import android.view.View;
 10 import android.view.View.OnClickListener;
 11 import android.widget.Button;
 12 import android.widget.EditText;
 13 import android.widget.ProgressBar;
 14 import android.widget.TextView;
 15 import android.widget.Toast;
 16 
 17 import java.io.IOException;
 18 import java.util.Timer;
 19 import java.util.TimerTask;
 20 
 21 public class MultiThreadDown extends Activity {
 22     EditText url, target;
 23     Button downButton;
 24     ProgressBar bar;
 25     ProgressDialog progressDialog;
 26     View downView;
 27     DownUtil downUtil;
 28     private int mDownStatus;
 29     private int threadNum = 6; // 預設的線程數
 30     android.os.Handler handler = new android.os.Handler() {
 31 
 32         @Override
 33         public void handleMessage(Message msg) {
 34             if (msg.what == 0x123) {
 35                 bar.setProgress(mDownStatus);
 36                 if (mDownStatus >= 100) {
 37                     Toast.makeText(MultiThreadDown.this, "下載完成", Toast.LENGTH_SHORT).show();
 38                 }
 39                 // Log.i("csx", "" + mDownStatus);
 40 
 41             }
 42         }
 43 
 44     };
 45 
 46     @Override
 47     protected void onCreate(Bundle savedInstanceState) {
 48 
 49         super.onCreate(savedInstanceState);
 50         setContentView(R.layout.layout_down);
 51         url = (EditText) findViewById(R.id.url);
 52 
 53         downButton = (Button) findViewById(R.id.down);
 54         bar = (ProgressBar) findViewById(R.id.bar);
 55         progressDialog = new ProgressDialog(this);
 56         progressDialog.setTitle("嘗試連接");
 57         progressDialog.setMessage("正在連接...");
 58         downButton.setOnClickListener(new DownButtonOnClickListener());
 59 
 60     }
 61 
 62     private class DownButtonOnClickListener implements OnClickListener {
 63 
 64         EditText targetFilePath, fileName;
 65         TextView fileSize;
 66         Thread connectionThread;
 67 
 68         public Thread instanceOfConnectionThread() {
 69             return new Thread() {
 70 
 71                 @Override
 72                 public void run() {
 73                     try {
 74                         downUtil.getFileInformation();
 75 
 76                     } catch (IOException e1) {
 77                         e1.printStackTrace();
 78                     }
 79 
 80                 }
 81 
 82             };
 83         }
 84 
 85         @Override
 86         public void onClick(View v) {
 87 
 88             String urlPath = url.getText().toString();
 89             if (urlPath == null || urlPath.equals("")) {
 90                 return;
 91             }
 92             progressDialog.show();
 93             downUtil = new DownUtil(urlPath, threadNum);
 94             connectionThread = instanceOfConnectionThread();
 95             connectionThread.start();
 96 
 97             int connectionNum = 3;
 98             while (!downUtil.isGetFileInformation() && connectionNum > 0) {// 迴圈請求連接,如果3次之後還沒有連接成功,就退出
 99                 if (!connectionThread.isAlive()) {
100                     connectionThread = null;
101                     connectionThread = instanceOfConnectionThread();
102                     connectionThread.start();
103                     connectionNum--;
104                 }
105 
106             }
107 
108             progressDialog.cancel();
109             if (!downUtil.isGetFileInformation()) {
110                 Toast.makeText(MultiThreadDown.this, "請求失敗!", Toast.LENGTH_SHORT).show();
111                 return;
112             }
113             downView = getLayoutInflater().inflate(R.layout.layout_download_view, null);
114             targetFilePath = (EditText) downView.findViewById(R.id.editText_target_path);
115             fileName = (EditText) downView.findViewById(R.id.editText_file_name);
116             fileSize = (TextView) downView.findViewById(R.id.textView_file_size);
117             targetFilePath.setText(downUtil.getDefaultTargetPath());
118             fileName.setText(downUtil.getFileName());
119             fileSize.append("" + ((double) downUtil.getFileSize()) / 1024 + "k");
120 
121             new AlertDialog.Builder(MultiThreadDown.this).setView(downView)
122                     .setPositiveButton("確定", new DialogInterface.OnClickListener() {
123 
124                         @Override
125                         public void onClick(DialogInterface dialog, int which) {
126                             if (!downUtil.isGetFileInformation()) {
127                                 dialog.dismiss();
128                                 return;
129                             }
130                             final String path = targetFilePath.getText().toString();
131                             final String name = fileName.getText().toString();
132 
133                             new Thread() {
134 
135                                 @Override
136                                 public void run() {
137                                     try {
138                                         downUtil.download(path, name);
139                                     } catch (IOException e) {
140                                         // TODO Auto-generated catch block
141                                         e.printStackTrace();
142                                     }
143 
144                                     final Timer timer = new Timer();
145                                     TimerTask task = new TimerTask() {
146 
147                                         @Override
148                                         public void run() {
149 
150                                             mDownStatus = (int) (downUtil.getCompleteRate() * 100);
151                                             handler.sendEmptyMessage(0x123);
152                                             if (mDownStatus >= 100) {
153                                                 timer.cancel();
154                                             }
155 
156                                         }
157                                     };
158                                     timer.schedule(task, 0, 100);
159 
160                                 }
161 
162                             }.start();
163 
164                         }
165                     }).setNegativeButton("取消", null)
166                     .setTitle(downUtil.isGetFileInformation() ? "鏈接可用" : "鏈接不可用").show();
167 
168         }
169     }
170 
171 }
複製代碼

下麵是主頁面佈局:layout_down.xml

複製代碼
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical" >
 6 
 7     <ScrollView
 8         android:id="@+id/scrollView1"
 9         android:layout_width="match_parent"
10         android:layout_height="wrap_content" >
11 
12         <LinearLayout
13             android:layout_width="match_parent"
14             android:layout_height="match_parent"
15             android:orientation="vertical" >
16 
17             <TextView
18                 android:layout_width="match_parent"
19                 android:layout_height="wrap_content"
20                 android:text="要下載的資源的URL:" />
21 
22             <EditText
23                 android:id="@+id/url"
24                 android:layout_width="match_parent"
25                 android:layout_height="wrap_content"
26                 android:text="在在這裡輸入URL" />
27 
28             <Button
29                 android:id="@+id/down"
30                 android:layout_width="match_parent"
31                 android:layout_height="wrap_content"
32                 android:text="下載" />
33             <!-- 定義一個水平進度條,用於顯示下載進度 -->
34 
35             <ProgressBar
36                 android:id="@+id/bar"
37                 style="?android:attr/progressBarStyleHorizontal"
38                 android:layout_width="match_parent"
39                 android:layout_height="wrap_content"
40                 android:max="100" />
41         </LinearLayout>
42     </ScrollView>
43 
44 </LinearLayout>
複製代碼

下麵是下載選項dialog佈局:layout_download_view.xml

複製代碼
 1 <?xml version="1.0" encoding="utf-8"?>
 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:orientation="vertical" >
 6 
 7     <TextView
 8         android:id="@+id/textView1"
 9         android:layout_width="wrap_content"
10         android:layout_height="wrap_content"
11         android:text="下載路徑:" />
12 
13     <EditText
14         android:id="@+id/editText_target_path"
15         android:layout_width="match_parent"
16         android:layout_height="wrap_content"
17         android:ems="10" >
18 
19         <requestFocus />
20     </EditText>
21 
22     <TextView
23         android:id="@+id/textView2"
24         android:layout_width="wrap_content"
25         android:layout_height="wrap_content"
26         android:text="文件名:" />
27 
28     <EditText
29         android:id="@+id/editText_file_name"
30         android:layout_width="match_parent"
31         android:layout_height="wrap_content"
32         android:maxLines="1"
33         android:ems="10" />
34 
35     <TextView
36         android:id="@+id/textView_file_size"
37         android:layout_width="wrap_content"
38         android:layout_height="wrap_content"
39         android:text="文件大小:" />
40 
41 </LinearLayout>
複製代碼

效果圖如下:輸入URL,點擊下載彈出對話框,輸入路徑和文件名 點擊確定開始下載


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 學習要點: 1.什麼是 jQuery EasyUI 2.學習 jQuery EasyUI 的條件 3.jQuery EasyUI 的功能和優勢 4.其他的 UI 插件 5.是否相容低版本 IE 6.下載及運行 jQuery EasyUI 在正式瞭解 jQuery EasyUI 之前,我們先瞭解一下什 ...
  • 說到水平居中,大家可能覺得很簡單啊,text-align:center 就OK了。 但是,有時候會發現這樣寫了也沒出效果。原因是什麼呢? 請往下看。 水平居中:分為塊級元素居中和行元素居中 行內元素: 行內元素就是內聯元素。例如<span>、<a>、<label>、<em>、<img>等。。 直接構 ...
  • 學習要點: 1.底部區域 2.說明區域 3.版權及證件區 主講教師:李炎恢 本章主要開始使用學慣用 HTML5 和 CSS3 來構建 Web 頁面,第一個項目採用 PC 端固定佈局來實現。 一.底部區域 本節課,我們將探討一下首頁中最底部的區域。這部分區域由兩個部分組成,一個是說明內容,有:合作伙伴 ...
  • 題目:編寫如下頁面 當用戶點擊”統計“按鈕時,在視窗中彈出文本框中出現次數最多的字元並顯示其出現的次數 點擊統計按鈕時效果如圖所示: 實現代碼: 本題的主要知識點 js對象屬性可以後期添加的特點、對象屬性的遍歷等js對象的綜合運用。js相關的知識可以參考我之前的博客 javascript對象的相關操 ...
  • ViewPager 在 Android 控制項中,ViewPager 一直算是使用率比較高的控制項,包括首頁的banner,tab頁的切換都能見到ViewPager的身影。 來源自 v4 支持包 ( ),用於左右切換界面實現tab的效果。其使用方法與 類似都是搭配一個adapter進行數據適配。 在佈局 ...
  • 將插件升級到1.3後支持Android Studio1.3 + ButterKnife7如何使用 有所使用的佈局 ID 上點擊右鍵 (例如上圖中的 R.layout.activity_settings ), 然後選擇 Generate -> Generate ButterKnife Injectio ...
  • 一,效果圖。 二,工程圖。 三,代碼。 ViewController.h #import <UIKit/UIKit.h> @interface ViewController : UIViewController @end ViewController.m #import "ViewControlle ...
  • UIDynamic是從IOS7開始引入的一種新技術,隸屬於UIKit框架,我們可以認為是一種物理引擎能模擬和模擬現實生活中的物理現象,比如重力,彈性碰撞等。 可以讓開發人員遠離物理公式的情況下,實現一些物理模擬效果。 這裡簡單介紹一下重力,碰撞,捕捉的用法。 先介紹一下使用的大致步驟 創建物理模擬器 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...