您好,登錄后才能下訂單哦!
一丶使用xUtils-master的API實現(xiàn)下載文件
點擊下載:public void click(View view){
HttpUtils http = new HttpUtils();
String path = etpath.getText().toString();//拿到下載的的服務地址
//"/mnt/sdcard/txdx.mp3":下載到機子的目錄;true:是否支持斷點下載
http.download(path,"/mnt/sdcard/txdx.mp3",true,new RequestCallBack<File>() {
@Override
public void onSuccess(ResponseInfo<File> arg0) {
Toast.makeText(MainActivity.this, "下載成功", 0).show() ;
}
@Override
public void onFailure(HttpException arg0, String arg1) {
}
@Override
public void onLoading(long total, long current, boolean isUploading) {
super.onLoading(total, current, isUploading);
pb.setMax((int)total) ;//設置進度條最大的進度
pb.setProgress((int)current) ;//設置當前的進度
}
}) ;
}
注:1.進度條布局
<ProgressBar
android:id="@+id/pb"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
2.xUtils-master下載api附件中
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。