我想从 Java 服务器(Restful Jax-rs)发送图像。我的客户是安卓。
@GET
public Response getUserImage() {
byte[] image =new byte[1024];
return Response.ok(image, MediaType.APPLICATION_OCTET_STREAM).header("content-attachment; filename=image_from_server.png") .build();
但是这里有一个下载框来了。所以我想在没有下载框的情况下下载,当我在浏览器上运行请求 URL 时,它应该会自动打开。谢谢。