私のコードはこのようなものです
<%@ include file="getcon.jsp"%>
<html>
<head>
<title>View Image Page</title>
</head>
<body>
<table width="100%" border="0">
<!-- main content -->
<%
ResultSet rs=null;
try
{
rs=st.executeQuery("select * from file1");
while(rs.next())
{
%>
<table width="70%" height="160" border="1" align="center">
<tr>
<!-- Mention Directory where your images has been saved-->
<td><img src="<%=rs.getString("file_path") %>" alt="image" /></td>
<td> <%out.print(rs.getString(1)); %></td>
</tr>
</table>
<%
}
}
catch(Exception e)
{
out.print(""+e.getMessage());
}
%>
</table>
</body>
</html>
表の 2 列目から画像のパスを見ることができますが、画像を見ることができません。これの理由は何ですか。誰か助けてください。よろしくお願いします。