【问题标题】:Unable to show images in JSP from database using servlet无法使用 servlet 从数据库中显示 JSP 中的图像
【发布时间】:2015-06-06 11:18:00
【问题描述】:

我正在尝试使用 servlet 从 mysql 数据库中获取并显示在 JSP 上保存为 blob 的图像。我写了这段代码引用了许多网站,但它仍然不起作用。我没有收到任何类型的错误。它的显示是这样的

我已经创建了表使用

create table contacts(id int not null auto_increment,
name varchar(40),
second varchar(40),
photo blob,
primary key(id));

这是我的 Servlet DisplayServlet.java

@WebServlet("/DisplayServlet")
public class DisplayServlet extends HttpServlet {
    private static final long serialVersionUID = 1L;
    Connection conn = null;
    PreparedStatement stmt = null;
    ResultSet rs = null;
    public void init() throws ServletException {

    }

public DisplayServlet() {
    super();
}


protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request, response);
}

/**
 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
 */
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    String imageId = request.getParameter("id");
    System.out.println(imageId);
    InputStream sImage;



    // Check if ID is supplied to the request.
    if (imageId == null) {
        // Do your thing if the ID is not supplied to the request.
        // Throw an exception, or send 404, or show default/warning image, or just ignore it.
        response.sendError(HttpServletResponse.SC_NOT_FOUND); // 404.
        return;
    }

    try{
        Class.forName("com.mysql.jdbc.Driver");
        conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/projectbuy", "root","root");
        stmt = conn.prepareStatement("select photo from contacts where id=" + imageId);
        rs = stmt.executeQuery();
        if(rs.next()){
            System.out.println("Inside RS");
            byte[] bytearray = new byte[1048576];
            int size=0;
            sImage = rs.getBinaryStream(4);
            response.reset();
            response.setContentType("image/jpeg");
            while((size = sImage.read(bytearray)) != -1 ){
                response.getOutputStream().
                write(bytearray,0,size);
            }
        }

    } catch (Exception e){
        e.printStackTrace();
    }
}

}

这是我的jsp页面,imagedemo.jsp

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
    </head>
    <body>

        <h1>Hello World!</h1>


        <img src="DisplayServlet?id=1" height="150px" width="150px" alt="ProfilePic">

    </body>
</html>

最后这是我的xml文件

<servlet-mapping>
        <servlet-name>action</servlet-name>
        <url-pattern>*.do</url-pattern>
    </servlet-mapping>

<servlet>
    <servlet-name>DisplayServlet</servlet-name>
    <servlet-class>DisplayServlet</servlet-class>
</servlet>

<servlet-mapping>
    <servlet-name>DisplayServlet</servlet-name>
    <url-pattern>/DisplayServlet/*</url-pattern>
</servlet-mapping>

【问题讨论】:

    标签: java mysql jsp servlets


    【解决方案1】:

    您只选择一列:

    stmt = conn.prepareStatement("select photo from contacts where id=" + imageId);
    

    但后来尝试检索第 4 个:

    sImage = rs.getBinaryStream(4);
    

    而且你在写循环之后没有flush()调用。 此外,最好使用池中的连接,而不是直接从 driverManager 实例化它,并在工作后关闭它。

    【讨论】:

    • :: 谢谢。它解决了我的问题:) 非常感谢先生。
    猜你喜欢
    • 1970-01-01
    • 2016-05-02
    • 1970-01-01
    • 2011-11-08
    • 2014-09-09
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-04-13
    相关资源
    最近更新 更多