在浏览器中显示pdf文件?
我从数据库中检索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页面中的说 的链接时
,我都应该在客户端的浏览器上显示从数据库检索到的文件。
回答:
将响应的内容类型设置为pdf
response.setContentType("application/pdf");
然后将pdf内容写入响应对象
以上是 在浏览器中显示pdf文件? 的全部内容, 来源链接: utcz.com/qa/416559.html