gpt4 book ai didi

java - 如何在 Google 应用引擎中一次提供多个 Blobstore 文件?

转载 作者:行者123 更新时间:2023-12-01 17:25:06 25 4
gpt4 key购买 nike

我知道如何提供单个 blobstore 文件,我使用了以下代码片段:

BlobKey blobKey = new BlobKey(key);
response.setContentType("mime");
response.setHeader("Content-Disposition", "attachment;filename=" + fileName);
blobstoreService.serve(blobKey, response);

但我想一次下载多个文件。 IE。请求处理程序将一次提供多个文件。我使用了这段代码,但没有工作

for (String key : blobKeyCollection) {
BlobKey blobKey = new BlobKey(key);
response.setContentType("mime");
response.setHeader("Content-Disposition", "attachment;filename=" + fileName);
blobstoreService.serve(blobKey, response);
}

它只响应一个文件,而不是提供多个文件。所以,我想知道如何实现这一目标

提前致谢

最佳答案

浏览器不支持多文件下载 - only option is to zip files together and download the zip .

为此,您可以使用 Files API读取多个文件和 zip them up .

关于java - 如何在 Google 应用引擎中一次提供多个 Blobstore 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15613362/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com