在新的浏览器选项卡中打开ResponseEntity PDF

我遇到了一个有用的PDF生成代码,以在Spring MVC应用程序中向客户端显示文件“ 使用Spring MVC返回生成的PDF”:

@RequestMapping(value = "/form/pdf", produces = "application/pdf")

public ResponseEntity<byte[]> showPdf(DomainModel domain, ModelMap model) {

createPdf(domain, model);

Path path = Paths.get(PATH_FILE);

byte[] pdfContents = null;

try {

pdfContents = Files.readAllBytes(path);

} catch (IOException e) {

e.printStackTrace();

}

HttpHeaders headers = new HttpHeaders();

headers.setContentType(MediaType.parseMediaType("application/pdf"));

String filename = NAME_PDF;

headers.setContentDispositionFormData(filename, filename);

headers.setCacheControl("must-revalidate, post-check=0, pre-check=0");

ResponseEntity<byte[]> response = new ResponseEntity<byte[]>(

pdfContents, headers, HttpStatus.OK);

return response;

}

我添加了一个声明,表明该方法返回一个PDF文件“ 春3.0的Java REST回报PDF文档”): produces ="application/pdf"

我的问题是执行以上代码时,它立即要求客户端保存PDF文件。我希望先在浏览器中查看PDF文件,以便客户端可以决定是否保存它。

我发现“建议_如何_target="_blank"在Spring表单标签中添加”“

如何使PDF内容(通过SpringMVC控制器方法提供)出现在新窗口中。我对其进行了测试,并且按预期方式,它显示了一个新选项卡,但再次出现了保存提示。

另一个是“ 我无法通过Java在浏览器中打开.pdf”的添加方法,httpServletResponse.setHeader("Content-Disposition", "inline");但我不使用它HttpServletRequest来提供PDF文件。

给定我的代码/位置,如何在新选项卡中打开PDF文件?

回答:

尝试

httpServletResponse.setHeader("Content-Disposition", "inline");

但是使用responseEntity如下。

HttpHeaders headers = new HttpHeaders();

headers.add("content-disposition", "attachment; filename=" + fileName)

ResponseEntity<byte[]> response = new ResponseEntity<byte[]>(

pdfContents, headers, HttpStatus.OK);

它应该工作

对此不确定,但似乎您使用的setContentDispositionFormData不好,请尝试>

headers.setContentDispositionFormData("attachment", fileName);

让我知道是否可行

此行为取决于浏览器和您要提供服务的文件。使用内联,浏览器将尝试在浏览器中打开文件。

headers.setContentDispositionFormData("inline", fileName);

要么

headers.add("content-disposition", "inline;filename=" + fileName)

以上是 在新的浏览器选项卡中打开ResponseEntity PDF 的全部内容, 来源链接: utcz.com/qa/398571.html

回到顶部