我已经使用 spring MVC 文件上传功能上传了文件,并且文件正在上传到 /home/myfolder/images/ 文件夹中。现在我想从这个物理路径下载这些文件。为了在我的 jsp 中进行测试,我编写了以下行
<a href="<%=request.getSession().getServletContext().getRealPath("/home/images/image.jpg")%>" >download </a>
但是当我单击此链接时,它会将我重定向到 URL
http://localhost:8080/home/myfolder/workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/myproject/home/images/image.jpg.
如何下载保存的图像。如果您还需要我解决此问题,请告诉我。