7

当客户端请求文件时,我使用此代码发送它:

public static Result download(String file) {
    File file = getRealFile(file);
    return Ok(file);
}

但我发现浏览器不会下载它,而是显示它的内容。响应头:

Content-Type    text/plain
Transfer-Encoding   chunked

发送文件的正确方法是什么?


更新

根据 Razvi 的回答,我发现这个问题的答案似乎很好:https ://stackoverflow.com/a/1074925/342235

但是我们真的需要设置这么多的标题吗?

header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Disposition: attachment; filename=$filepath");
header("Content-Type: mime/type");
header("Content-Transfer-Encoding: binary");
// UPDATE: Add the below line to show file size during download.
header('Content-Length: ' . filesize($filepath));
4

1 回答 1

8

您需要设置 Content-Disposition 标头。我相信标头的值应该是attachment. 为此,请参阅操作响应文档。

对于 play 2.0,以下工作无需明确设置标头:

ok(new FileInputStream(file))

于 2012-07-19T11:02:14.287 回答