基于以下代码示例,从Play服务器返回分块数据,
out.write
每次调用时都不应该创建响应?
当使用post客户端时,我只得到1个包含所有数据的wholl数据的响应。
我需要从服务器返回一个巨大的文件,应该在客户端下载。 有什么想法吗?
public static Result index(){
// Prepare a chunked text stream
Chunks<String> chunks = new StringChunks()
{
// Called when the stream is ready
public void onReady(Chunks.Out<String> out)
{
out.write("kiki");
out.write("foo");
out.write("bar");
out.close();
}
};// Serves this stream with 200 OK
return ok(chunks);
}
答案 0 :(得分:0)
块的数量取决于块大小,在整个框架中通常默认为1024 KB。您的输出太小,因此只发送一个块。