重複の可能性:
サーブレットを使用してjspで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 ページでhref=pdf(pdf は私のサーブレット名)というリンクをクリックするたびに
、データベースから取得したファイルをクライアントのブラウザに表示する必要があります。
私は何をすべきか?