import 'dart:io';
import 'package:dio/dio.dart';

main(){
  // 创建dio对象
  final dio = Dio();
  // 下载地址
  var url = 'https://*******.org/files/1.0.0.apk';
  // 手机端路径
  String savePath =  Directory.systemTemp.path+'/ceshi.apk';
  print(savePath);
  downLoad(dio,url,savePath);
}

downLoad(Dio dio,String url,String savePath){
  dio.download(url, savePath,onReceiveProgress:onReceiveProgress).then((value){
    print(value);
  }).whenComplete((){
    print('下载结束');
  }).catchError((onError){
    print(onError);
  });
}

// 下载的进度
void onReceiveProgress(int count, int total) {
  print('文件大小:$total  当前进度:$count');
  if(total != -1){
    print((count / total *100).toStringAsFixed(0)+'%');
  }
}

在这里插入图片描述
在这里插入图片描述

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部