通过jsp中存储在数据库中的文件路径下载文件

时间:2012-05-10 08:11:27

标签: jsp hyperlink

您想从文件位置存储在数据库中的目录下载文件,我已经完成了从数据库检索路径到html表的编码,但我不知道使用其路径下载文件的锄头存储在database.here我的代码用于从数据库中检索路径。

<%@ 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>

1 个答案:

答案 0 :(得分:0)

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

应该做的伎俩。