gpt4 book ai didi

java - doc文件未在jsp中显示

转载 作者:行者123 更新时间:2023-12-01 04:18:43 25 4
gpt4 key购买 nike

我正在做一个JSP网站,使用hibernate 我需要在哪里显示 PDF 文件、doc 文件等。我通过 webservice 有 PDF/doc 文件的字节数组,我需要在 HTML 中将该字节数组显示为 PDF 文件/doc。我使用以下代码将其转换为 pdf,并在 html 页面中正确显示

   byte[] pdf = new byte[] {}; // Load PDF byte[] into here
if (pdf != null) {

// set pdf content
response.setContentType("application/pdf");

// write the content to the output stream
BufferedOutputStream fos1 = new BufferedOutputStream(
response.getOutputStream());
fos1.write(ba1);
fos1.flush();
fos1.close();
}

对于文档文件,我更改了response.ContentType

   response.setContentType("application/pdf");
to
response.setContentType( "application/msword" );

但不是显示它而是显示一个下载窗口。我如何解决这个问题

最佳答案

试试这个:

01 response.setContentLength(pdf.length);

任何代理、防病毒软件或防火墙都可能猜测下载已完成。因此请告知浏览器您希望传输多少字节。

关于java - doc文件未在jsp中显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19195269/

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