作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用了 Jersey 服务器,我希望端点根据参数重定向到文件的下载。
我在使用以下功能时遇到困难:
@GET
@Path("/get/{id}/{chunk}")
public Response getDescription(@PathParam("id") String id, @PathParam("chunk") String chunk) {
{
StreamingOutput fileStream = new StreamingOutput()
{
@Override
public void write(java.io.OutputStream output, String id) throws IOException, WebApplicationException
{
try
{
if (Objects.equals(chunk, new String("init"))) {
java.nio.file.Path path = Paths.get("src/main/uploads/example/frame_init.pdf");
}
else {
java.nio.file.Path path = Paths.get("src/main/uploads/example/"+ id +".pdf");
}
byte[] data = Files.readAllBytes(path);
output.write(data);
output.flush();
}
catch (Exception e)
{
throw new WebApplicationException("File Not Found !!");
}
}
};
return Response
.ok(fileStream, MediaType.APPLICATION_OCTET_STREAM)
.header("content-disposition","attachment; filename = myfile.pdf")
.build();
}
我在向函数 write 传递参数时遇到问题。我在端点处有参数 id 和 chunk,但我无法在 write 方法中使用它,因为它实现了 StreamingOutput()。
我该如何处理?谢谢
最佳答案
对于java,final关键字应该可以解决你的问题。
作为更新的代码;
@GET
@Path("/get/{id}/{chunk}")
public Response getDescription(@PathParam("id") final String id, @PathParam("chunk") final String chunk) {
{
StreamingOutput fileStream = new StreamingOutput()
{
@Override
public void write(java.io.OutputStream output, String id2) throws IOException, WebApplicationException
{
try
{
if (Objects.equals(chunk, new String("init"))) {
java.nio.file.Path path = Paths.get("src/main/uploads/example/frame_init.pdf");
}
else {
java.nio.file.Path path = Paths.get("src/main/uploads/example/"+ id2 +".pdf");
}
byte[] data = Files.readAllBytes(path);
output.write(data);
output.flush();
}
catch (Exception e)
{
throw new WebApplicationException("File Not Found !!");
}
}
};
return Response
.ok(fileStream, MediaType.APPLICATION_OCTET_STREAM)
.header("content-disposition","attachment; filename = myfile.pdf")
.build();
}
关于java - 如何向实现另一个方法的方法提供参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36022750/
我是一名优秀的程序员,十分优秀!