我目前有一个带有文件列表的JSP页面,我想通过单击列表中的这个名称来下载每个文件。 我的JSP代码:
<c:forEach var="listFiles" items="${listFiles}" varStatus="status">
<span id="file-${status.index}" class="files">
<a href="Download">
<c:out value="${listFiles[status.index]}"></c:out>
</a>
</c:forEach>
我找到了一个运行我的servlet的函数,但它是一个简单的例子,我们将路径文件提供给servlet,我希望这段代码是通用的。 如何将每个路径文件提供给servlet?
答案 0 :(得分:3)
将此代码放在servlet中:
String filename=null;
try
{
filename = request.getParameter("filename");
if(filename == null || filename.equals(""))
{
throw new ServletException("File Name can't be null or empty");
}
String filepath = "yourDirPath"+filename; //change your directory path
File file = new File(filepath);
if(!file.exists())
{
throw new ServletException("File doesn't exists on server.");
}
response.setContentType("APPLICATION/OCTET-STREAM");
response.setHeader("Content-Disposition","attachment; filename=\"" + filename + "\"");
java.io.FileInputStream fileInputStream = new java.io.FileInputStream(filepath);
int i;
while ((i=fileInputStream.read()) != -1)
{
response.getWriter().write(i);
}
fileInputStream.close();
}
catch(Exception e)
{
System.err.println("Error while downloading file["+filename+"]"+e);
}
让我们说你的servlet url-pattern是:download
现在,您下载文件的html代码应该是这样的:
<a href="download?filename=YourFileName" target="_blank">Click here to download file</a>