jax-rs下载文件
Posted dashazia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jax-rs下载文件相关的知识,希望对你有一定的参考价值。
- @Path("/file")
- public class FileService
- private static final String FILE_PATH = "c:\\file.log";
- @GET
- @Path("/get")
- @Produces("text/plain")
- public Response getFile()
- File file = new File(FILE_PATH);
- ResponseBuilder response = Response.ok((Object) file);
- response.header("Content-Disposition",
- "attachment; filename=\"file_from_server.log\"");
- return response.build();
可以看到要下载服务端文件,在方法前加@Produces("text/plain")
,还有就是response输出时,这两句:
ResponseBuilder response = Response.ok((Object) file);
response.header("Content-Disposition",
"attachment; filename=\"file_from_server.log\"");
则访问URL:“/file/get“时,则会提示下载文件。
2 同样,下载其他格式文件,都如此类推,分别是@Produces("image/png")
这样的形式,加@Produces标签,并且response.header中进行文件类型修改就可以了,
就不再举例
以上是关于jax-rs下载文件的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot与JAX-RS框架Jersey的完美搭配
[maven] "Dynamic Web Module 3.0 requires Java 1.6 or newer." OR "JAX-RS (REST Web Ser