0

嗨,想从文件位置存储在数据库中的目录下载文件,我已经完成了从数据库检索到 html 表的路径的编码,但我不知道如何使用存储在数据库中的路径下载文件.这是我从数据库中检索路径的代码。

<%@ page import="java.io.*,java.sql.*"%>


 <%
 String id=request.getParameter("id");
 Class.forName("com.mysql.jdbc.Driver").newInstance();  
 Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/ksa","root","root");  
 Statement st=con.createStatement();
 ResultSet rs=st.executeQuery("Select id,file_path,file_date from file12 where id like '"+id+"%'");
 %>
 <table cellpadding="15" border="1">
 <%
 while(rs.next()){

%>
<tr>
<td><%=rs.getString("id")%> </td>
<td><%=rs.getString("file_path")%></td> 

 <td><%=rs.getString("file_date")%> </td> 
  </tr>
  <%}%>
 </table>
4

1 回答 1

0
<td><a href = '<%=rs.getString("file_path")%>'><%=rs.getString("file_path")%></a></td>

应该做的伎俩。

于 2012-05-10T08:16:24.117 回答