Android實(shí)現(xiàn)文件下載進(jìn)度顯示功能
和大家一起分享一下學(xué)習(xí)經(jīng)驗(yàn),如何實(shí)現(xiàn)Android文件下載進(jìn)度顯示功能,希望對(duì)廣大初學(xué)者有幫助。
先上效果圖:

上方的藍(lán)色進(jìn)度條,會(huì)根據(jù)文件下載量的百分比進(jìn)行加載,中部的文本控件用來(lái)現(xiàn)在文件下載的百分比,最下方的ImageView用來(lái)展示下載好的文件,項(xiàng)目的目的就是動(dòng)態(tài)向用戶(hù)展示文件的下載量。
下面看代碼實(shí)現(xiàn):首先是布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="100" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/progressBar"
android:layout_centerHorizontal="true"
android:layout_marginTop="24dp"
android:text="TextView" />
<ImageView
android:id="@+id/imageView"
android:layout_marginTop="24dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below="@+id/textView"
android:contentDescription="@string/app_name"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
接下來(lái)的主Activity代碼:
public class MainActivity extends Activity {
ProgressBar pb;
TextView tv;
ImageView imageView;
int fileSize;
int downLoadFileSize;
String fileEx,fileNa,filename;
//用來(lái)接收線(xiàn)程發(fā)送來(lái)的文件下載量,進(jìn)行UI界面的更新
private Handler handler = new Handler(){
@Override
public void handleMessage(Message msg)
{//定義一個(gè)Handler,用于處理下載線(xiàn)程與UI間通訊
if (!Thread.currentThread().isInterrupted())
{
switch (msg.what)
{
case 0:
pb.setMax(fileSize);
case 1:
pb.setProgress(downLoadFileSize);
int result = downLoadFileSize * 100 / fileSize;
tv.setText(result + "%");
break;
case 2:
Toast.makeText(MainActivity.this, "文件下載完成", Toast.LENGTH_SHORT).show();
FileInputStream fis = null;
try {
fis = new FileInputStream(Environment.getExternalStorageDirectory() + File.separator + "/ceshi/" + filename);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
Bitmap bitmap = BitmapFactory.decodeStream(fis); ///把流轉(zhuǎn)化為Bitmap圖
imageView.setImageBitmap(bitmap);
break;
case -1:
String error = msg.getData().getString("error");
Toast.makeText(MainActivity.this, error, Toast.LENGTH_SHORT).show();
break;
}
}
super.handleMessage(msg);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
pb=(ProgressBar)findViewById(R.id.progressBar);
tv=(TextView)findViewById(R.id.textView);
imageView = (ImageView) findViewById(R.id.imageView);
tv.setText("0%");
new Thread(){
public void run(){
try {
//下載文件,參數(shù):第一個(gè)URL,第二個(gè)存放路徑
down_file("http://cdnq.duitang.com/uploads/item/201406/15/20140615203435_ABQMa.jpeg", Environment.getExternalStorageDirectory() + File.separator + "/ceshi/");
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}.start();
}
/**
* 文件下載
* @param url:文件的下載地址
* @param path:文件保存到本地的地址
* @throws IOException
*/
public void down_file(String url,String path) throws IOException{
//下載函數(shù)
filename=url.substring(url.lastIndexOf("/") + 1);
//獲取文件名
URL myURL = new URL(url);
URLConnection conn = myURL.openConnection();
conn.connect();
InputStream is = conn.getInputStream();
this.fileSize = conn.getContentLength();//根據(jù)響應(yīng)獲取文件大小
if (this.fileSize <= 0) throw new RuntimeException("無(wú)法獲知文件大小 ");
if (is == null) throw new RuntimeException("stream is null");
File file1 = new File(path);
File file2 = new File(path+filename);
if(!file1.exists()){
file1.mkdirs();
}
if(!file2.exists()){
file2.createNewFile();
}
FileOutputStream fos = new FileOutputStream(path+filename);
//把數(shù)據(jù)存入路徑+文件名
byte buf[] = new byte[1024];
downLoadFileSize = 0;
sendMsg(0);
do{
//循環(huán)讀取
int numread = is.read(buf);
if (numread == -1)
{
break;
}
fos.write(buf, 0, numread);
downLoadFileSize += numread;
sendMsg(1);//更新進(jìn)度條
} while (true);
sendMsg(2);//通知下載完成
try{
is.close();
} catch (Exception ex) {
Log.e("tag", "error: " + ex.getMessage(), ex);
}
}
//在線(xiàn)程中向Handler發(fā)送文件的下載量,進(jìn)行UI界面的更新
private void sendMsg(int flag)
{
Message msg = new Message();
msg.what = flag;
handler.sendMessage(msg);
}
}
最后一定要注意的是:在AndroidManifest.xml文件中,添加訪(fǎng)問(wèn)網(wǎng)絡(luò)的權(quán)限
<uses-permission android:name="android.permission.INTERNET"/>
到這里關(guān)于Android文件下載動(dòng)態(tài)顯示下載進(jìn)度的內(nèi)容就為大家分享完畢,希望對(duì)大家的學(xué)習(xí)有所幫助。
- Android文件下載進(jìn)度條的實(shí)現(xiàn)代碼
- Android zip文件下載和解壓實(shí)例
- Android 文件下載三種基本方式
- Android實(shí)現(xiàn)簡(jiǎn)單的文件下載與上傳
- Android Retrofit文件下載進(jìn)度顯示問(wèn)題的解決方法
- Android 將文件下載到指定目錄的實(shí)現(xiàn)代碼
- Android文件下載功能實(shí)現(xiàn)代碼
- Android基于HttpUrlConnection類(lèi)的文件下載實(shí)例代碼
- android實(shí)現(xiàn)文件下載功能
- Android簡(jiǎn)單實(shí)現(xiàn)文件下載
相關(guān)文章
android中一些特殊字符(如:←↑→↓等箭頭符號(hào))的Unicode碼值
這篇文章主要介紹了android中一些特殊字符(如:←↑→↓等箭頭符號(hào))的Unicode碼值,需要的朋友可以參考下2017-03-03
android圖片文件的路徑地址與Uri的相互轉(zhuǎn)換方法
下面小編就為大家?guī)?lái)一篇android圖片文件的路徑地址與Uri的相互轉(zhuǎn)換方法。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2017-04-04
基于GridView和ActivityGroup實(shí)現(xiàn)的TAB分頁(yè)(附源碼)
今天為大家介紹下使用GridView和ActivityGroup實(shí)現(xiàn)的分頁(yè),這里需要將Activity轉(zhuǎn)換成Window,然后再換成成View添加到容器中,具體實(shí)現(xiàn)代碼如下,感興趣的朋友可以參考下哈2013-06-06
Android高仿抖音照片電影功能的實(shí)現(xiàn)代碼
這篇文章主要介紹了Android高仿抖音照片電影功能的實(shí)現(xiàn)代碼,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-09-09
Android編程實(shí)現(xiàn)使用Intent傳輸包含自定義類(lèi)的ArrayList示例
這篇文章主要介紹了Android編程實(shí)現(xiàn)使用Intent傳輸包含自定義類(lèi)的ArrayList,涉及Android對(duì)象序列化、反序列化、Intent數(shù)據(jù)傳輸?shù)认嚓P(guān)操作技巧,需要的朋友可以參考下2017-08-08
Android中實(shí)現(xiàn)EditText圓角的方法
Android中實(shí)現(xiàn)EditText圓角的方法,需要的朋友可以參考一下2013-03-03
android使用handler ui線(xiàn)程和子線(xiàn)程通訊更新ui示例
這篇文章主要介紹了android使用handler ui線(xiàn)程和子線(xiàn)程通訊更新ui的方法,大家參考使用吧2014-01-01
Android 服務(wù)端將位置信息發(fā)送給客戶(hù)端的實(shí)現(xiàn)
這篇文章主要介紹了Android 服務(wù)端將位置信息發(fā)送給客戶(hù)端的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-01-01
Android實(shí)現(xiàn)阿里云oss上傳流程解析
這篇文章主要介紹了Android實(shí)現(xiàn)阿里云oss上傳流程解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-09-09

