玩框架2 Java,返回chunked响应

时间:2014-09-14 13:50:23

标签: java playframework-2.0 chunks

基于以下代码示例,从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); 
} 

1 个答案:

答案 0 :(得分:0)

块的数量取决于块大小,在整个框架中通常默认为1024 KB。您的输出太小,因此只发送一个块。