【问题标题】:Return File From Resteasy Server从 Resteasy 服务器返回文件
【发布时间】:2011-12-30 04:23:03
【问题描述】:

您好,我想从 resteasy 服务器返回一个文件。为此,我在客户端有一个链接,它使用 ajax 调用休息服务。我想在休息服务中返回文件。我尝试了这两个代码块,但都没有按我希望的那样工作。

    @POST
    @Path("/exportContacts")
    public Response exportContacts(@Context HttpServletRequest request, @QueryParam("alt") String alt) throws  IOException {

            String sb = "Sedat BaSAR";
            byte[] outputByte = sb.getBytes();


    return Response
            .ok(outputByte, MediaType.APPLICATION_OCTET_STREAM)
            .header("content-disposition","attachment; filename = temp.csv")
            .build();
    }

.

@POST
@Path("/exportContacts")
public Response exportContacts(@Context HttpServletRequest request, @Context HttpServletResponse response, @QueryParam("alt") String alt) throws IOException {

    response.setContentType("application/octet-stream");
    response.setHeader("Content-Disposition", "attachment;filename=temp.csv");
    ServletOutputStream out = response.getOutputStream();
    try {

        StringBuilder sb = new StringBuilder("Sedat BaSAR");

        InputStream in =
                new ByteArrayInputStream(sb.toString().getBytes("UTF-8"));
        byte[] outputByte = sb.getBytes();
        //copy binary contect to output stream
        while (in.read(outputByte, 0, 4096) != -1) {
            out.write(outputByte, 0, 4096);
        }
        in.close();
        out.flush();
        out.close();

    } catch (Exception e) {
    }

    return null;
}

当我从 firebug 控制台检查时,这两个代码块都写了“Sedat BaSAR”以响应 ajax 调用。但是,我想将“Sedat BaSAR”作为文件返回。我该怎么做?

提前致谢。

【问题讨论】:

  • 您最终找到解决方案了吗?

标签: java rest file-io resteasy java-io


【解决方案1】:

有两种方法。

第一个 - 返回一个 StreamingOutput 实例。

@Produces(MediaType.APPLICATION_OCTET_STREAM)
public Response download() {
    InputStream is = getYourInputStream();

    StreamingOutput stream = new StreamingOutput() {

        public void write(OutputStream output) throws IOException, WebApplicationException {
            try {
                output.write(IOUtils.toByteArray(is));
            }
            catch (Exception e) {
                throw new WebApplicationException(e);
            }
        }
 };

 return Response.ok(stream, MediaType.APPLICATION_OCTET_STREAM).header("content-disposition", "attachment; filename=\"temp.csv\"").build();
}

您可以返回文件大小添加Content-Length头,如下例:

return Response.ok(stream, MediaType.APPLICATION_OCTET_STREAM).header("content-disposition", "attachment; filename=\"temp.csv\"").header("Content-Length", getFileSize()).build();

但如果您不想返回 StreamingOutput 实例,还有其他选择。

2nd - 将输入流定义为实体响应。

@Produces(MediaType.APPLICATION_OCTET_STREAM)
public Response download() {
    InputStream is = getYourInputStream();

    return Response.code(200).entity(is).build();
}

【讨论】:

  • 如何返回一个名为 UTF-8 的文件?
猜你喜欢
  • 2019-01-18
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-02-26
  • 1970-01-01
  • 2016-12-10
  • 1970-01-01
相关资源
最近更新 更多