gpt4 book ai didi

jersey - 在 Jersey 中使用 StreamingOutput 作为响应实体的示例

转载 作者:行者123 更新时间:2023-12-02 10:09:10 26 4
gpt4 key购买 nike

有人可以发布一个示例,说明如何在 Jersey 中将 StreamingOutput 设置为 Response 对象中的实体吗?

我还没有找到这样的例子。

最佳答案

看看这是否有帮助:

@GET
@Produces(MediaType.TEXT_PLAIN)
public Response streamExample() {
StreamingOutput stream = new StreamingOutput() {
@Override
public void write(OutputStream os) throws IOException,
WebApplicationException {
Writer writer = new BufferedWriter(new OutputStreamWriter(os));
writer.write("test");
writer.flush(); // <-- This is very important. Do not forget.
}
};
return Response.ok(stream).build();
}

关于jersey - 在 Jersey 中使用 StreamingOutput 作为响应实体的示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12012724/

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