小编典典

在浏览器中显示pdf文件?

jsp

我从数据库中检索pdf文件,并将其放入这样的文件中

String str="select * from files where name='Security.pdf';";
Statement stmt2= conn.createStatement  
                   (ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE);
rs = stmt2.executeQuery(str);
while(rs.next())
{
 InputStream input = rs.getBinaryStream("content");
 //to create file
   File f=new File("c:/pdfile.pdf");
   OutputStream out=new FileOutputStream(f);
   byte buf[]=new byte[1024];
   int len;
   while((len=input.read(buf))>0)
   out.write(buf,0,len);
   out.close();
   input.close();
    System.out.println("\nFile is created..");
}

现在这是在服务器端。在我的客户端中,每当用户单击jsp页面中的说 href = pdf(pdf是我的servlet名称) 的链接时
,我都应该在客户端的浏览器上显示从数据库检索到的文件。
我该怎么办?


阅读 578

收藏
2020-06-08

共1个答案

小编典典

将响应的内容类型设置为pdf

response.setContentType("application/pdf");

然后将pdf内容写入响应对象

2020-06-08