我正在尝试将数据从数据库显示到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();
}
}
答案 0 :(得分:1)
您应该使用servlet以适当的内容类型标题提供图像
<img src="img-servlet?contact_id=<%= rs.getInt(1) %>" width="500" height="300" alt="data">
并且,在您的servlet中获取contact_id
查询参数并获取图像内容