通过HttpUrlConnection下载文件并显示进度条

实现效果:

核心下载块:


int count = 0;
URL url = new URL("http://hezuo.downxunlei.com/xunlei_hezuo/thunder(127891).exe");

HttpURLConnection connection = (HttpURLConnection) url.openConnection();//建立连接
 
if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
}else return;

totalSize = connection.getContentLength();//获取文件总大小

InputStream is = connection.getInputStream();
OutputStream os = new FileOutputStream(
Environment.getExternalStorageDirectory() + "/download.exe");
int len=0;

bar.setMax(totalSize);//设置进度条最大长度
Log.i("xiaohong", "max" + bar.getMax());

byte bs[] = new byte[1024];
while ((len = is.read(bs)) != -1) {
os.write(bs, 0, len);//写入文件
count += len;handler.sendEmptyMessage(count);

}
os.flush();
is.close();
os.close();//最后关闭输入输出流

 

//设置进度条及文本

final Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
// TODO Auto-generated method stub
super.handleMessage(msg);
bar.setProgress(msg.what);
textView.setText("进度" + String.format("%.1f", msg.what * 1f / totalSize * 100) + "%");//保留一位小数点,且需注意数据在计算时应转为浮点型!
}
};

转载于:https://www.cnblogs.com/lzh-Linux/p/4983977.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值