Flutter Web:从 URL 下载文件而不打开它

Posted

技术标签:

【中文标题】Flutter Web:从 URL 下载文件而不打开它【英文标题】:Flutter Web: Downloading file from URL without opening it 【发布时间】:2021-01-29 06:17:56 【问题描述】:

我希望用户能够下载他们上传的文件。问题是,某些文件(如 .pdf)在浏览器中打开,而不是下载。有什么解决方案可以在 Flutter Web 中下载文件而不在 Web 浏览器中打开它?

我正在使用的代码:

final anchor = AnchorElement(
    href: url)
  ..setAttribute("download", fileName)
    ..click();

【问题讨论】:

【参考方案1】:

在this answer 之后,您可以从字符串或int 列表(文件字节)生成url。这是一个应该可以工作的短片(来自上面的答案):

import 'dart:convert';
import 'dart:html' as html; // or package:universal_html/prefer_universal/html.dart


final text = 'this is the text file';

// prepare
final bytes = utf8.encode(text);
final blob = html.Blob([bytes]);
final url = html.Url.createObjectUrlFromBlob(blob);
final anchor = html.document.createElement('a') as html.AnchorElement
  ..href = url
  ..style.display = 'none'
  ..download = 'some_name.txt';
html.document.body.children.add(anchor);

// download
anchor.click();

// cleanup
html.document.body.children.remove(anchor);
html.Url.revokeObjectUrl(url);

另外,universal_html 包在所有 Flutter 平台上使用 html 非常方便。在 Flutter 移动应用中使用 dart:html 会导致编译失败。

【讨论】:

以上是关于Flutter Web:从 URL 下载文件而不打开它的主要内容,如果未能解决你的问题,请参考以下文章

使用 Powershell 解析从 Web 请求返回的 JSON 字节流而不写入文件

如何从 Flutter 中的 URL 下载文件并将其保存在 iOS 共享文件夹中?

从url下载pdf,在flutter中保存到android中的手机本地存储

从 url 下载文件并将其上传到 AWS S3 而不保存 - node.js

Flutter web - Window.history.pushState 不起作用

如何在按下按钮时下载 Flutter Web 应用程序?