我正在尝试将表数据从数据库显示到 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>
当单击第二个 div 的项目名称或数据时,我还必须执行下载,然后应该下载相关数据。
谁能尽快解决我的这个问题?
如何在 servlet 中实现下载作为后端?
我已经为 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();
}
}