我已经使用Jhipster开发了一个应用程序,我有一种方法可以从我的应用程序中下载文件。当我通过api REST运行此方法时,文件已成功下载,但是如果我按应用程序中的按钮进行下载,则无法正常工作,并且一切正常。 他们的日志是相同的:
登录
2019-04-12 19:20:51.971 DEBUG 940 --- [ XNIO-6 task-6] c.g.aop.logging.LoggingAspect : Enter: com.app.web.rest.TicketResource.downloadFile() with argument[s] = []
2019-04-12 19:20:51.973 DEBUG 940 --- [ XNIO-6 task-6] c.g.aop.logging.LoggingAspect : Exit: com.app.web.rest.TicketResource.downloadFile() with result = <200 OK,Byte array resource [resource loaded from byte array],{Content-Disposition=[attachment; filename=ticket.pdf], Cache-Control=[no-cache, no-store, must-revalidate], Pragma=[no-cache], Expires=[0], Content-Length=[92672], Content-Type=[application/pdf]}>
通过应用登录
2019-04-12 19:23:43.341 DEBUG 940 --- [ XNIO-6 task-7] c.g.aop.logging.LoggingAspect : Enter: com.app.web.rest.TicketResource.downloadFile() with argument[s] = []
2019-04-12 19:23:43.343 DEBUG 940 --- [ XNIO-6 task-7] c.g.aop.logging.LoggingAspect : Exit: com.app.web.rest.TicketResource.downloadFile() with result = <200 OK,Byte array resource [resource loaded from byte array],{Content-Disposition=[attachment; filename=ticket.pdf], Cache-Control=[no-cache, no-store, must-revalidate], Pragma=[no-cache], Expires=[0], Content-Length=[92672], Content-Type=[application/pdf]}>
TicketResource.java
@RestController
@RequestMapping("/api")
public class TicketResource {
@GetMapping("/ticket-download")
public ResponseEntity<Resource> downloadFile() {
File file = new File("D:/Tickets/ticket.pdf");
HttpHeaders header = new HttpHeaders();
header.add(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=ticket.pdf");
header.add("Cache-Control", "no-cache, no-store, must-revalidate");
header.add("Pragma", "no-cache");
header.add("Expires", "0");
Path path = Paths.get(file.getAbsolutePath());
ByteArrayResource resource;
try {
resource = new ByteArrayResource(Files.readAllBytes(path));
return ResponseEntity.ok().headers(header).contentLength(file.length())
.contentType(MediaType.parseMediaType("application/pdf")).body(resource);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}
}
}
我希望通过单击应用程序中的“下载”按钮来正确下载文件
答案 0 :(得分:1)
您必须修改service.component.ts
和ticket.component.ts
才能使用资源响应。我建议您使用FileSaver
库。这是一个使用Spring Boot的Angular下载文件的示例,它对您的工作很有帮助:http://roufid.com/angular-download-file-spring-boot/
答案 1 :(得分:0)
我对Spring还是很陌生,但是您附加了下载控制器的代码,而不是实际下载的代码。
文件实际上是创建的吗?
路径存在(路径的所有目录都存在)吗?
编辑: 我还没有意识到他在谈论Web应用程序,而不是在谈论swing或javafx,因此之前的代码是没有用的。抱歉。
功能可能不完整,请尝试以下操作:
downloadFile(): Observable<any> {
return this.http
.get(SERVER_API_URL + 'api/ticket-download')
.subscribe((data) => {
this.blob = new Blob([data], {type: 'application/pdf'});
var downloadURL = window.URL.createObjectURL(this.blob);
window.open(downloadUrl);
});
或使用 FileSaver 库。