一丶使用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<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"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
2.xUtils-master下载api附件中
本文出自 “android笔记” 博客,请务必保留此出处http://2585211.blog.51cto.com/10044233/1671441
原文地址:http://2585211.blog.51cto.com/10044233/1671441