gpt4 book ai didi

java - 通过网络发送文件的最佳方式

转载 作者:太空宇宙 更新时间:2023-11-04 08:13:42 26 4
gpt4 key购买 nike

我想通过 REST 接口(interface)将文件发送到浏览器。

您能否提出最有效的方法来做到这一点,并记住以下几点?

  1. 流量不大。
  2. 我从 HBase 获取文件,这意味着当我从 HBase 获取文件时,我会在 字节数组 中获取它。
  3. 这些文件不在服务器的任何文件夹中。这些文件只能从 HBase 表中获取。

前端是PHP,我不知道PHP

最佳答案

REST API 中,您只需将字节数组传递给Response,它就会自行处理。

使用以下代码 -

@Produces("image/jpg")
public Response getImage() {
<Fetch it from where ever you have it>
Response.ok(<byteArrayOfTheFile>).build();
}

关于java - 通过网络发送文件的最佳方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10795066/

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