如何通过REST从我的Jhipster应用程序下载文件?

问题描述 投票:0回答:2

我使用Jhipster开发了一个应用程序,我有一个从我的应用程序下载文件的方法。当我通过api REST运行此方法时,文件已成功下载,但如果我按下我的应用程序中的按钮进行下载,则无效并且调试全部正常。他们的日志是一样的:

通过http://localhost:9060/api/ticket-download登录

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]}>

ticket resource.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;
        }
    }
}

我希望通过单击我的应用程序中的“下载”按钮,该文件将被正确下载

java spring pdf jhipster
2个回答
1
投票

您必须修改service.component.tsticket.component.ts才能使用资源响应。我建议你使用FileSaver库。下面是使用Spring Boot的Angular下载文件的示例,它可以帮助您完成所需操作:http://roufid.com/angular-download-file-spring-boot/


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库。

© www.soinside.com 2019 - 2024. All rights reserved.