gpt4 book ai didi

java - 从服务器发送pdf文件到客户端

转载 作者:行者123 更新时间:2023-12-02 01:58:19 24 4
gpt4 key购买 nike

我想从服务器发送pdf文件并在客户端显示它。我使用服务器端技术作为java,客户端技术作为Angular 6。请建议我。提前致谢。

最佳答案

使用数组缓冲区

服务电话:

在文件服务中:

getFileFromServer(url){
return this.httpService.getUploadedFile(url);
}

在 HTTP 服务中:

getUploadedFile(url:string){
//just for authentication and file access.
let headers = new HttpHeaders().append("Authorization", "Bearer " + token)
return this.httpClient.get(url, {responseType: 'arraybuffer',headers:headers});
}

在组件中:

使用Blob

Blob 引用 -----> Blob

Here this.type = 'application/pdf'

例如用户单击“查看”按钮:

(click)="getPdfFile()" 将会触发。

它将调用服务方法来获取响应作为arraybuffer

getPdfFile() {
this.fileService.getFileFromServer(url).subscribe(responseData => {

//catch response as array buffer
this.showPdfFile(responseData, this.type);

}, error => {

//catch error if any
console.log(error);
});
}

showPdfFile(data: any, type: string) {
var blob = new Blob([data], { type: type });
var url = window.URL.createObjectURL(blob);

// it will open url to new tab.
window.open(url);
}

关于java - 从服务器发送pdf文件到客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52014205/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com