在 jaxRS 响应中将 URL 的内容作为文件返回

发布于 2025-01-06 13:18:13 字数 251 浏览 2 评论 0原文

我是一个 REST 包装服务,当我调用后端服务时,在某些情况下,它们生成了一个文件,我可以使用特定 URL 检索该文件: https://localhost:1234/... 如何最有效地使用 javax.ws.core.Response 将该链接处的内容发送给调用者?我可能可以自己将 URL 读取到本地文件并以这种方式发送,但我想知道 REST 是否可以为我做到这一点。谢谢,

I am a REST wrapper service and when I call the back end service, in some cases they have generated a file which I can retrieve with a particular URL: https://localhost:1234/... How do I most efficiently use javax.ws.core.Response to send the contents at that link to the caller? I can probably read the URL myself to a local file and send it that way, but am wondering if REST will do that for me. Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

琉璃梦幻 2025-01-13 13:18:13

当您的后端 url 对您的客户端公开时,您可以发送重定向 301。

当不是时

@Get
@Produces({...})
public Response readFile() {

    return Response.ok().entity(new StreamingOutput() {
        @Override public void write(OutputStream output)
           throws IOException, WebApplicationException {
           // open the back-end url and copy the bytes to given output
           final InputStream input = new URL(back-end-url).openStream();
           final byte[] buf = new byte[1024];
           for (int read = -1; (read = input.read(buf)) != -1; ) {
               output.write(buf, 0, read);
           }
           output.flush();
        }
    }).build();
}

when your back-end url is public to your client, you can send redirect 301.

When it's not

@Get
@Produces({...})
public Response readFile() {

    return Response.ok().entity(new StreamingOutput() {
        @Override public void write(OutputStream output)
           throws IOException, WebApplicationException {
           // open the back-end url and copy the bytes to given output
           final InputStream input = new URL(back-end-url).openStream();
           final byte[] buf = new byte[1024];
           for (int read = -1; (read = input.read(buf)) != -1; ) {
               output.write(buf, 0, read);
           }
           output.flush();
        }
    }).build();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文