这是我的代码。我有数据库中的文件夹和文件路径中的图像我想检索所有图像的最后创建的行我的意思是我想显示第一个最后的图像。如何显示图像最后在jsp数据库中创建
<%@ include file="getcon.jsp"%>
<html>
<head>
<title>View Image Page</title>
</head>
<body>
<table width="100%" border="0">
<!-- main content -->
<%
String type=request.getParameter("type");
String sql;
if(type!=null)
{
sql="SELECT PICTURE, TITLE, TAG, POST from testimage where type='"+type+"'";
ResultSet rs=null;
try
{
rs=st.executeQuery(sql);
while(rs.next())
{
%>
<table width="700%" height="600" border="1" align="center">
<tr>
<!-- Mention Directory where your images has been saved-->
<% String filename=rs.getString(2);
//System.out.println("filename isssssss"+filename);
out.println("<b>"+filename+"</b>");
out.println(application.getRealPath("/"));
//session.setAttribute("download",filename);
%>
<td><img src="jokeimage\<%=rs.getString(1)%>" width="500" height="400" /></td>
</tr>
</table>
<%
}
}
catch(Exception e)
{
out.print(""+e.getMessage());
}
}
else{}
%>
请尽量避免* Scriplet *代替使用JSTL&EL。 – Braj
确切的问题在哪里?在从服务器访问数据库或图像时,请详细解释一下? – Braj