溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

調(diào)用xUtils-master的api實現(xiàn)下載

發(fā)布時間:2020-04-23 12:15:33 來源:網(wǎng)絡 閱讀:601 作者:秋寒526 欄目:開發(fā)技術

一丶使用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附件中

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI