首页 > 解决方案 > 下载大文件时连接关闭

问题描述

我正在尝试使用 DIO 在 Flutter 应用程序中下载一个大文件(1.5-3GB)。在调试版本中一切都很好,但在发布时我会随机出现连接中断:DioError [DioErrorType.DEFAULT]:HttpException:接收数据时连接关闭,uri = https://unitedrp.ru/files/10475-GTA-SanAndreas -v1-06-cache.zip

在 flutter_downloader 插件中我有同样的错误。HttpClient导致应用程序崩溃没有解释

await GetIt.I.get<Dio>().download(
    link, 
    path,
    onReceiveProgress: (receive,total) => onProgress(((receive/total)*100).toInt()));

标签: flutterdart

解决方案


推荐阅读