这个问题在这里已经有答案了:
如何在jsp页面中从数据库检索和显示图像(5个答案)
两年前关门了。
我尝试从数据库中检索多个图像并使用jsp页面显示它们,我尝试了从数据库中检索多个图像,但没有得到完美的逻辑。
下面是检索单个图像的代码,请帮助检索多个图像
我正在使用mysql数据库
我的servlet代码:
package com.Image;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.tomcat.util.codec.binary.Base64;
@WebServlet("/ImageRetrieve")
public class ImageRetrieve extends HttpServlet {
static {
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{ Connection con = null;
PreparedStatement ps = null;
ResultSet rs = null;
try {
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/database1", "root", "vicky");
ps = con.prepareStatement("select frontimage from album ");
rs=ps.executeQuery();
if (rs.next()) {
byte[] fi = rs.getBytes("frontimage");
String FI = new String(Base64.encodeBase64(fi), "UTF-8");
request.setAttribute("FIS", FI);
RequestDispatcher rd=request.getRequestDispatcher("RetrieveImage.jsp");
rd.forward(request, response);
}
} catch (SQLException e) {
throw new ServletException("Something failed at SQL/DB level.", e);
}
}
}
我的jsp代码:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Display Image</title>
</head>
<body>
<div>THE DISPLAY</div>
<div >
<img src="data:image/png;base64,${requestScope['FIS']}" style="width:50px; height:50px"/>
</div>
</body>
</html>
2条答案
按热度按时间jei2mxaa1#
你的问题在if声明中
if (rs.next())
它只执行一次,与结果集中的结果数无关。因为if语句在resultset中有任意数量的结果时返回true,所以会存储resultset的第一个图像,并且代码会继续运行,因为if条件已经满足。代码完全按照您的要求执行。将if语句更改为while (rs.next())
将遍历整个结果集,并将每个图像保存到预定义的数组中。wztqucjr2#
将只从中获取第一个字节[]
rs
. 将此更改为while循环以获取每个循环:但是你需要一个容器,比如一个列表来保存它们:
然后在循环之后,设置列表的属性并将其转发到:
在jsp中,迭代fi(现在是一个列表)以显示每个fi。