有人可以发布一个示例,说明如何在Jersey中将其设置StreamingOutput
为Response
对象中的实体吗?
我还没有找到一个例子。
Answers:
看看这是否有帮助:
@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();
}
MessageBodyWriter
但是这个问题是关于与Response
对象的流传输。随着MessageBodyWriter
您有义务写的OutputStream
。