热门IT资讯网

调用xUtils-master的api实现下载

发表于:2024-11-27 作者:热门IT资讯网编辑
编辑最后更新 2024年11月27日,一丶使用xUtils-master的API实现下载文件点击下载:public void click(View view){HttpUtils http = new HttpUtils();String

一丶使用xUtils-master的API实现下载文件

点击下载: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() {

@Override
public void onSuccess(ResponseInfo 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.进度条布局

android:id="@+id/pb"

android:layout_width="match_parent"
android:layout_height="wrap_content" />

2.xUtils-master下载api附件中

0