我从我的数据库中检索一个 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 名称)时,我应该在客户端的浏览器上显示从数据库中检索到的文件。
我该怎么办?