我正在尝试通过我的Spring控制器发送生成的PDF,在将其另存为服务器上的文件并将其打开时,我已经验证了它的外观。当我发送请求时,它会打开一个新标签,而pdf为空白。页数和所有内容正确,只是空白。
我已经从浏览器中保存了PDF,并将其与在服务器上生成并保存的PDF进行了比较,而来自浏览器的PDF更大,这使我相信编码是错误的。但是我看过很多其他发送PDF的Spring控制器示例,并且我的代码与它们的功能相同。控制器发回一个ResponseEntity(我也尝试过ResponseEntity)
@RequestMapping(value = "/generatePDF", method = RequestMethod.POST, produces = "application/pdf")
public ResponseEntity<byte[]> generatePDF(@RequestBody UserObject userObject) {
//Generation of PDF
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_PDF);
headers.setContentDispositionFormData("inline", "document.pdf");
headers.setCacheControl("must-revalidate, post-check=0, pre-check=0");
try {
File file = new File("/path/to/document.pdf");
byte[] filecontent = Files.readAllBytes(file.toPath());
return new ResponseEntity(filecontent,headers, HttpStatus.OK);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
发出请求的javascript是:
$.ajax({
type: "POST",
url: "myURL",
contentType: "application/json",
data : JSON.stringify(data),
async: false,
success: function(response) {
console.log(response)
window.open(URL.createObjectURL(new File([response], "document.pdf")));
}
});
打开一个新选项卡,但pdf为空白,并且二进制数据在服务器上保存的二进制数据与从浏览器下载的二进制数据之间看起来不同
答案 0 :(得分:0)
尝试通过添加headers.add("content-disposition", "inline;filename=" + filename);
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_PDF);
headers.setContentDispositionFormData("inline", "document.pdf");
headers.add("content-disposition", "inline;filename=" + filename);
headers.setCacheControl("must-revalidate, post-check=0, pre-check=0");