データベースから jsp ページにテーブル データを表示しようとしています。すべてのデータが取得されますが、画像が画像タブに読み込まれません。イメージを BLOB としてテーブルに保存しています。
私のjspページは次のとおりです。
<body>
<table border="1">
<%@ page import="com.*;"%>
<%
MySql myobj = new MySql();
myobj.connect();
String query="select contact_id,first_name,last_name,photo from contacts";
ResultSet rs = myobj.getdata(query);
while(rs.next())
{
%>
<tr>
<td>
<%= rs.getInt(1) %>
</td>
<td>
<%= rs.getString(2).toString() %>
</td>
<td>
<%= rs.getString(3).toString() %>
</td>
<td>
<img src="<%= rs.getString(4) %>" width="500" height="300" alt="data"></img>
</td>
</tr>
<%
}
%>
</table>
</body>
アイテム名または2番目のdivのデータがクリックされたときにダウンロードを実装する必要があり、その関連データをダウンロードする必要があります。
誰でもすぐにこの問題を解決できますか?
バックエンドとしてサーブレットにダウンロードを実装する方法は?
私は imageservlet のためにこのコードを書いています:
protected void doGet( HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
String id = request.getParameter("contact_id");
MySql myobj = new MySql();
myobj.connect();
PrintWriter out=response.getWriter();
try
{
String query="select photo from contacts where contact_id='"+id+"'";
ResultSet rs = myobj.getdata(query);
out.println(id);
Blob image=null;
byte[] imgData = null;
image= rs.getBlob(1);
imgData = image.getBytes(1, (int) image.length());
response.setContentType("image/gif");
OutputStream o = response.getOutputStream();
o.write(imgData);
o.flush();
o.close();
response.sendRedirect("Message.jsp");
}
catch (Exception e)
{
e.getMessage();
}
}