我想从jsp中存储在db中的imagepaths中检索图像

时间:2012-02-28 11:36:11

标签: jsp ms-access jdbc

我正在使用jsp文件,我想要检索图像

问题是我存储了图像路径,我想从图像路径中检索图像到jsp页面

怎么可能? 我正在使用ms-access数据库。

Connection con = null;
    ResultSet rst = null;
    Statement st = null;

    try{
            Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
            con=DriverManager.getConnection("jdbc:odbc:register");
            st=con.createStatement();
            rst = st.executeQuery("select * from productregistration");
                while(rst.next())
                {
                    %>
               <img src="<%=rst.getString(1)%>"/>
                    <%

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

1 个答案:

答案 0 :(得分:0)

不能使用相对路径而是使用绝对路径