从spring URL Tag打开文件

时间:2017-01-31 05:49:00

标签: javascript jquery spring-mvc jstl

我一直在寻找解决方案,但无法找到任何解决方案。

我将文件存储在本地驱动器中,并将该文件的路径存储在我的mongoDB中, 在检索路径之后,我想给URL提供来自DB的路径。当我点击该URL时,该路径应该打开该相关文件 我的代码是

db中的数据为:

"filePath" : "C:/myfiles/Resume_Vipul.docx"

在前端访问它:

<c:forEach var="ser" items="${services}" varStatus="status">
<td class="text-center"><a href='<spring:url value="${ser.filePath}" />'>file</a></td>
</c:forEach>

当我点击Url时,它会给出错误:

Not allowed to load local resource: file:///C:/myfiles/Resume_Vipul.docx

执行此操作的正确方法是什么。 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

您应该以控制文件名作为参数向控制器发送请求,然后将这些字节作为响应发送回去,

ServletContext cntx= req.getServletContext();
  // Get the absolute path of the image
  String filename = cntx.getRealPath("Images/button.png");
  // retrieve mimeType dynamically
  String mime = cntx.getMimeType(filename);
  if (mime == null) {
    resp.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
    return;
  }

  resp.setContentType(mime);
  File file = new File(filename);
  resp.setContentLength((int)file.length());

  FileInputStream in = new FileInputStream(file);
  OutputStream out = resp.getOutputStream();

  // Copy the contents of the file to the output stream
   byte[] buf = new byte[1024];
   int count = 0;
   while ((count = in.read(buf)) >= 0) {
     out.write(buf, 0, count);
  }
out.close();
in.close();

从客户端访问本地资源我认为不是一个好主意。考虑向服务器单独发出此请求。在您的情况下,您可以将资源路径作为String参数发送到服务器。